diff options
author | Roland McGrath <roland@hack.frob.com> | 2015-03-27 12:55:25 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2015-03-27 12:55:25 -0700 |
commit | 7285eb535aa8bdb43298069b353a3a4b4340a2b4 (patch) | |
tree | b9c7a58cafd78d58922be86d6695ec1532792907 /dlfcn | |
parent | 19a6a3acd10e04fc3aba8941b44918acc7003aa2 (diff) | |
download | glibc-7285eb535aa8bdb43298069b353a3a4b4340a2b4.tar.gz glibc-7285eb535aa8bdb43298069b353a3a4b4340a2b4.tar.xz glibc-7285eb535aa8bdb43298069b353a3a4b4340a2b4.zip |
Convert dlfcn/tststatic to use test-skeleton.
Diffstat (limited to 'dlfcn')
-rw-r--r-- | dlfcn/tststatic.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/dlfcn/tststatic.c b/dlfcn/tststatic.c index 00695be7b1..3d6551389e 100644 --- a/dlfcn/tststatic.c +++ b/dlfcn/tststatic.c @@ -2,8 +2,8 @@ #include <stdio.h> #include <stdlib.h> -int -main (void) +static int +do_test (void) { void *handle; int (*test) (int); @@ -33,3 +33,6 @@ main (void) dlclose (handle); return 0; } + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |