x86: In ld.so, diagnose missing APX support in APX-only builds
[glibc.git] / localedata / tst-leaks.c
blobccd44f2c6201488947f21226ba46068403320f8a
1 #include <locale.h>
2 #include <mcheck.h>
4 static int
5 do_test (void)
7 int cnt;
9 mtrace ();
11 for (cnt = 0; cnt < 100; ++cnt)
13 setlocale (LC_ALL, "de_DE.ISO-8859-1");
14 setlocale (LC_ALL, "de_DE.UTF-8");
17 return 0;
20 #define TEST_FUNCTION do_test ()
21 #include "../test-skeleton.c"