diff options
Diffstat (limited to 'math/test-powl.c')
-rw-r--r-- | math/test-powl.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/math/test-powl.c b/math/test-powl.c index fd2a1cbae4..66ef886ab6 100644 --- a/math/test-powl.c +++ b/math/test-powl.c @@ -21,8 +21,8 @@ #include <float.h> #include <ieee754.h> -int -main (void) +static int +do_test (void) { int result = 0; @@ -48,3 +48,6 @@ main (void) return result; } + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |