x86_64: Fix missing wcsncat function definition without multiarch (x86-64-v4)
[glibc.git] / elf / tst-audit9.c
blobb9de1bf5a2de62fd28fa5c7b36562490212fb32f
1 #include <dlfcn.h>
3 static int
4 do_test (void)
6 void *h = dlopen("$ORIGIN/tst-auditmod9b.so", RTLD_LAZY);
7 int (*fp)(void) = dlsym(h, "f");
8 return fp() - 1;
11 #include <support/test-driver.c>