Simplify x86 strcmp-sse4 unwind info.
[glibc.git] / locale / tst-duplocale.c
blob53e5fbb8fec0863f9da3c7b74ec8588797f6608f
1 #include <locale.h>
2 #include <stdio.h>
4 static int
5 do_test (void)
7 locale_t d = duplocale (LC_GLOBAL_LOCALE);
8 if (d != (locale_t) 0)
9 freelocale (d);
10 return 0;
13 #define TEST_FUNCTION do_test ()
14 #include "../test-skeleton.c"