diff options
Diffstat (limited to 'math/math.h')
-rw-r--r-- | math/math.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/math/math.h b/math/math.h index 89c1cfa..4d88f06 100644 --- a/math/math.h +++ b/math/math.h @@ -48,6 +48,11 @@ __BEGIN_DECLS #define __MATHDECL(type, function,suffix, args) \ __MATHDECL_1(type, function,suffix, args); \ __MATHDECL_1(type, __CONCAT(__,function),suffix, args) +#define __MATHCALLX(function,suffix, args, attrib) \ + __MATHDECLX (_Mdouble_,function,suffix, args, attrib) +#define __MATHDECLX(type, function,suffix, args, attrib) \ + __MATHDECL_1(type, function,suffix, args) __attribute__ (attrib); \ + __MATHDECL_1(type, __CONCAT(__,function),suffix, args) __attribute__ (attrib) #define __MATHDECL_1(type, function,suffix, args) \ extern type __MATH_PRECNAME(function,suffix) args |