diff options
Diffstat (limited to 'src/math/pow.c')
-rw-r--r-- | src/math/pow.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/pow.c b/src/math/pow.c index 694c2ef6..8d888670 100644 --- a/src/math/pow.c +++ b/src/math/pow.c @@ -341,3 +341,11 @@ double pow(double x, double y) #endif return exp_inline(ehi, elo, sign_bias); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |