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