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