summaryrefslogtreecommitdiff
path: root/elf/tst-pie2.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-pie2.c')
-rw-r--r--elf/tst-pie2.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/elf/tst-pie2.c b/elf/tst-pie2.c
index b76b3236e4..4c2daffb47 100644
--- a/elf/tst-pie2.c
+++ b/elf/tst-pie2.c
@@ -1,6 +1,6 @@
/* Test case for BZ #16381
- Copyright (C) 2014-2015 Free Software Foundation, Inc.
+ Copyright (C) 2014-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -31,8 +31,11 @@ init_g (void)
g += 1;
}
-int
-main (int argc, char *argv[])
+static int
+do_test (void)
{
return 0;
}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"