diff options
Diffstat (limited to 'src/math/cosf.c')
-rw-r--r-- | src/math/cosf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/cosf.c b/src/math/cosf.c index 23f3e5bf..8c4f67e5 100644 --- a/src/math/cosf.c +++ b/src/math/cosf.c @@ -76,3 +76,11 @@ float cosf(float x) return __sindf(y); } } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |