diff options
Diffstat (limited to 'src/math/sincosf.c')
-rw-r--r-- | src/math/sincosf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/sincosf.c b/src/math/sincosf.c index f8ca7232..75b5e7cd 100644 --- a/src/math/sincosf.c +++ b/src/math/sincosf.c @@ -115,3 +115,11 @@ void sincosf(float x, float *sin, float *cos) break; } } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |