diff options
Diffstat (limited to 'src/math/fdimf.c')
-rw-r--r-- | src/math/fdimf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/fdimf.c b/src/math/fdimf.c index 543c3648..73251cde 100644 --- a/src/math/fdimf.c +++ b/src/math/fdimf.c @@ -8,3 +8,11 @@ float fdimf(float x, float y) return y; return x > y ? x - y : 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |