ubuntu-buildroot/output/build/glibc-2.36-81-g4f4d7a13edfd.../localedata/tst-leaks.c

22 lines
307 B
C
Raw Normal View History

2024-04-01 15:19:46 +00:00
#include <locale.h>
#include <mcheck.h>
static int
do_test (void)
{
int cnt;
mtrace ();
for (cnt = 0; cnt < 100; ++cnt)
{
setlocale (LC_ALL, "de_DE.ISO-8859-1");
setlocale (LC_ALL, "de_DE.UTF-8");
}
return 0;
}
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"