diff options
Diffstat (limited to 'src/math/atan2f.c')
-rw-r--r-- | src/math/atan2f.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/atan2f.c b/src/math/atan2f.c index c634d00f..7b9a1766 100644 --- a/src/math/atan2f.c +++ b/src/math/atan2f.c @@ -81,3 +81,11 @@ float atan2f(float y, float x) return (z-pi_lo) - pi; /* atan(-,-) */ } } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |