From 2e7a35e6eb79d0fe2c7017ee3e0a14ea082d86c4 Mon Sep 17 00:00:00 2001 From: cornet Date: Wed, 22 Apr 2009 06:43:20 +0000 Subject: extern "C" on header --- src/elementaryFunctions/includes/atanh.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/elementaryFunctions/includes/atanh.h') diff --git a/src/elementaryFunctions/includes/atanh.h b/src/elementaryFunctions/includes/atanh.h index 12a4c487..32fe1789 100644 --- a/src/elementaryFunctions/includes/atanh.h +++ b/src/elementaryFunctions/includes/atanh.h @@ -17,6 +17,11 @@ #include "floatComplex.h" #include "doubleComplex.h" + +#ifdef __cplusplus +extern "C" { +#endif + /* ** Compute Hyperbolic ArcTangeant for different types . */ @@ -77,5 +82,10 @@ EXTERN_ELEMFUNCT void catanha(floatComplex* in, int size, floatComplex* out); */ EXTERN_ELEMFUNCT void zatanha(doubleComplex* in, int size, doubleComplex* out); +#ifdef __cplusplus +} /* extern "C" */ +#endif + + #endif /* !__ATANH_H__ */ -- cgit