diff options
Diffstat (limited to 'src/math/hypotf.c')
-rw-r--r-- | src/math/hypotf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/hypotf.c b/src/math/hypotf.c index 2fc214b7..603648f5 100644 --- a/src/math/hypotf.c +++ b/src/math/hypotf.c @@ -33,3 +33,11 @@ float hypotf(float x, float y) } return z*sqrtf((double)x*x + (double)y*y); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |