diff options
Diffstat (limited to 'src/math/asin.c')
-rw-r--r-- | src/math/asin.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/asin.c b/src/math/asin.c index c926b188..dbd95382 100644 --- a/src/math/asin.c +++ b/src/math/asin.c @@ -105,3 +105,11 @@ double asin(double x) return -x; return x; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |