diff options
Diffstat (limited to 'src/math/__sindf.c')
-rw-r--r-- | src/math/__sindf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/__sindf.c b/src/math/__sindf.c index 8fec2a3f..1691d620 100644 --- a/src/math/__sindf.c +++ b/src/math/__sindf.c @@ -34,3 +34,11 @@ float __sindf(double x) s = z*x; return (x + s*(S1 + z*S2)) + s*w*r; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |