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