summaryrefslogtreecommitdiff
path: root/gnulib/tst-gcc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnulib/tst-gcc.c')
-rw-r--r--gnulib/tst-gcc.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/gnulib/tst-gcc.c b/gnulib/tst-gcc.c
index 71fab284a2..b2cb256758 100644
--- a/gnulib/tst-gcc.c
+++ b/gnulib/tst-gcc.c
@@ -1,5 +1,5 @@
/* Test program for the gcc interface.
- Copyright (C) 2000-2014 Free Software Foundation, Inc.
+ Copyright (C) 2000-2015 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>.
@@ -51,8 +51,8 @@
})
-int
-main (void)
+static int
+do_test (void)
{
int result = 0;
int __integer_type;
@@ -71,3 +71,6 @@ main (void)
return result;
}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"