diff options
Diffstat (limited to 'test cases/unit/97 link full name/libtestprovider/provider.c')
-rw-r--r-- | test cases/unit/97 link full name/libtestprovider/provider.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test cases/unit/97 link full name/libtestprovider/provider.c b/test cases/unit/97 link full name/libtestprovider/provider.c new file mode 100644 index 0000000..5e79966 --- /dev/null +++ b/test cases/unit/97 link full name/libtestprovider/provider.c @@ -0,0 +1,12 @@ +#include <stdio.h> +static int g_checked = 0; + +static void __attribute__((constructor(101), used)) init_checked(void) { + g_checked=100; + fprintf(stdout, "inited\n"); +} + + +int get_checked(void) { + return g_checked; +} |