diff options
Diffstat (limited to 'src/math/__cosl.c')
-rw-r--r-- | src/math/__cosl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/__cosl.c b/src/math/__cosl.c index fa522ddd..ba2f5435 100644 --- a/src/math/__cosl.c +++ b/src/math/__cosl.c @@ -94,3 +94,11 @@ long double __cosl(long double x, long double y) return w + (((1.0-w)-hz) + (z*r-x*y)); } #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |