diff options
Diffstat (limited to 'src/math/cbrtf.c')
-rw-r--r-- | src/math/cbrtf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/cbrtf.c b/src/math/cbrtf.c index 89c2c865..b0c35fff 100644 --- a/src/math/cbrtf.c +++ b/src/math/cbrtf.c @@ -64,3 +64,11 @@ float cbrtf(float x) /* rounding to 24 bits is perfect in round-to-nearest mode */ return T; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |