about summary refs log tree commit diff
path: root/math/tst-definitions.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/tst-definitions.c')
-rw-r--r--math/tst-definitions.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/math/tst-definitions.c b/math/tst-definitions.c
index 2501c8c3d4..76a41256e8 100644
--- a/math/tst-definitions.c
+++ b/math/tst-definitions.c
@@ -21,8 +21,8 @@
 #include <stdio.h>
 
 
-int
-main (void)
+static int
+do_test (void)
 {
   int result = 0;
 
@@ -44,3 +44,6 @@ main (void)
 
   return result;
 }
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"