diff options
| author | cremno <[email protected]> | 2014-01-02 07:33:33 +0100 |
|---|---|---|
| committer | cremno <[email protected]> | 2014-01-02 07:33:33 +0100 |
| commit | 18433731edff73cc5254a76c86b7272a1430d0f7 (patch) | |
| tree | 10b527f38066f60aef24a961de5c37ee39dc155b /src/numeric.c | |
| parent | e8dd8180baae425c893e1054368a4c32c99ea805 (diff) | |
| download | mruby-18433731edff73cc5254a76c86b7272a1430d0f7.tar.gz mruby-18433731edff73cc5254a76c86b7272a1430d0f7.zip | |
remove various preprocessor conditionals
- HAVE_IEEEFP_H is nowhere defined or needed at all
- FreeBSD < 4 is unsupported since years
- MSVC workaround (around what exactly?)
Diffstat (limited to 'src/numeric.c')
| -rw-r--r-- | src/numeric.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/numeric.c b/src/numeric.c index db90d81fb..0b841bf70 100644 --- a/src/numeric.c +++ b/src/numeric.c @@ -5,12 +5,6 @@ */ #include <float.h> -#if defined(__FreeBSD__) && __FreeBSD__ < 4 -# include <floatingpoint.h> -#endif -#ifdef HAVE_IEEEFP_H -# include <ieeefp.h> -#endif #include <limits.h> #include <math.h> #include <stdlib.h> |
