diff options
Diffstat (limited to 'src/math/sincosl.c')
-rw-r--r-- | src/math/sincosl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/sincosl.c b/src/math/sincosl.c index d3ac1c4c..bd20706d 100644 --- a/src/math/sincosl.c +++ b/src/math/sincosl.c @@ -58,3 +58,11 @@ void sincosl(long double x, long double *sin, long double *cos) } } #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |