diff options
Diffstat (limited to 'src/math/nextafterf.c')
-rw-r--r-- | src/math/nextafterf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/nextafterf.c b/src/math/nextafterf.c index 75a09f7d..a5ff8a27 100644 --- a/src/math/nextafterf.c +++ b/src/math/nextafterf.c @@ -28,3 +28,11 @@ float nextafterf(float x, float y) FORCE_EVAL(x*x + ux.f*ux.f); return ux.f; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |