summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/includes/pow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/elementaryFunctions/includes/pow.h')
-rw-r--r--src/elementaryFunctions/includes/pow.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/elementaryFunctions/includes/pow.h b/src/elementaryFunctions/includes/pow.h
index f1d3191f..ec8216d8 100644
--- a/src/elementaryFunctions/includes/pow.h
+++ b/src/elementaryFunctions/includes/pow.h
@@ -16,6 +16,9 @@
#include "dynlib_elementaryfunctions.h"
#include "multiplication.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
EXTERN_ELEMFUNCT float spows(float value, float expand);
EXTERN_ELEMFUNCT double dpows(double value, double expand);
@@ -32,4 +35,9 @@ EXTERN_ELEMFUNCT void cpowa(floatComplex *value, int size, floatComplex* expand
EXTERN_ELEMFUNCT void zpowa(doubleComplex *value, int size, doubleComplex* expand, doubleComplex *out);
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+
#endif /* !__POW_H__ */