diff options
author | Sergey Matveychuk <sem@FreeBSD.org> | 2004-11-17 09:20:41 +0000 |
---|---|---|
committer | Sergey Matveychuk <sem@FreeBSD.org> | 2004-11-17 09:20:41 +0000 |
commit | 06a42a3658344e6e201ddc40295e2f6c2c4be2f1 (patch) | |
tree | 8963b8496a792efdf1489586aeff97f3c05007da /devel/mico/files | |
parent | b19d107ab60873760256f910ff8da1ef2df4ab75 (diff) |
Notes
Diffstat (limited to 'devel/mico/files')
-rw-r--r-- | devel/mico/files/patch-include::mico::os-math.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/devel/mico/files/patch-include::mico::os-math.h b/devel/mico/files/patch-include::mico::os-math.h new file mode 100644 index 000000000000..4d36f7a4e764 --- /dev/null +++ b/devel/mico/files/patch-include::mico::os-math.h @@ -0,0 +1,28 @@ +--- include/mico/os-math.h.orig Tue Nov 16 22:31:18 2004 ++++ include/mico/os-math.h Tue Nov 16 21:07:40 2004 +@@ -291,6 +291,25 @@ + #define isnan(x) (fpclassify(x) == FP_NAN) + #endif + #endif ++ ++#ifndef asinl ++#define asinl asin ++#endif ++#ifndef ldexpl ++#define ldexpl ldexp ++#endif ++#ifndef frexpl ++#define frexpl frexp ++#endif ++#ifndef fmodl ++#define fmodl fmod ++#endif ++#ifndef ceill ++#define ceill ceil ++#endif ++#ifndef floorl ++#define floorl floor ++#endif + #endif // __FreeBSD__ + + #include <unistd.h> |