summaryrefslogtreecommitdiff
path: root/fixincludes/tests/base/internal/math_core.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-03-15 20:51:12 -0400
committermidipix <writeonce@midipix.org>2015-03-15 20:51:12 -0400
commita6f94ed5221e1b03e1578c94643bf483d17870d6 (patch)
tree9351854c1b301c25258d2cd32f52057caef9fedb /fixincludes/tests/base/internal/math_core.h
parent607827292053aa25d0f0300add0798dd085a9131 (diff)
downloadcbb-gcc-4.6.4-a6f94ed5221e1b03e1578c94643bf483d17870d6.tar.bz2
cbb-gcc-4.6.4-a6f94ed5221e1b03e1578c94643bf483d17870d6.tar.xz
fixincludes: remove the source directory in its entirety.
Diffstat (limited to 'fixincludes/tests/base/internal/math_core.h')
-rw-r--r--fixincludes/tests/base/internal/math_core.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/fixincludes/tests/base/internal/math_core.h b/fixincludes/tests/base/internal/math_core.h
deleted file mode 100644
index f39ac3f90..000000000
--- a/fixincludes/tests/base/internal/math_core.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* DO NOT EDIT THIS FILE.
-
- It has been auto-edited by fixincludes from:
-
- "fixinc/tests/inc/internal/math_core.h"
-
- This had to be done to correct non-standard usages in the
- original, manufacturer supplied header file. */
-
-
-
-#if defined( IRIX___GENERIC1_CHECK )
-extern int isnan(double);
-extern int isnanf(float);
-extern int isnanl(long double);
-#define isnan(x) (sizeof(x) == sizeof(double) ? _isnan(x) \
- : sizeof(x) == sizeof(float) ? _isnanf(x) \
- : _isnanl(x))
-
-
-#endif /* IRIX___GENERIC1_CHECK */
-
-
-#if defined( IRIX___GENERIC2_CHECK )
-#define isless(x,y) \
- ((sizeof(x)<=4 && sizeof(y)<=4) ? _islessf(x,y) \
- : (sizeof(x)<=8 && sizeof(y)<=8) ? _isless(x,y) \
- : _islessl(x,y))
-
-#endif /* IRIX___GENERIC2_CHECK */