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