diff options
Diffstat (limited to 'src/math/fmaxl.c')
-rw-r--r-- | src/math/fmaxl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/fmaxl.c b/src/math/fmaxl.c index 4b03158e..224ece1e 100644 --- a/src/math/fmaxl.c +++ b/src/math/fmaxl.c @@ -19,3 +19,11 @@ long double fmaxl(long double x, long double y) return x < y ? y : x; } #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |