diff options
Diffstat (limited to 'src/math/sin.c')
-rw-r--r-- | src/math/sin.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/sin.c b/src/math/sin.c index 055e215b..e15af0bb 100644 --- a/src/math/sin.c +++ b/src/math/sin.c @@ -76,3 +76,11 @@ double sin(double x) return -__cos(y[0], y[1]); } } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |