diff options
Diffstat (limited to 'locale/tst-duplocale.c')
-rw-r--r-- | locale/tst-duplocale.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/locale/tst-duplocale.c b/locale/tst-duplocale.c new file mode 100644 index 0000000..53e5fbb --- /dev/null +++ b/locale/tst-duplocale.c @@ -0,0 +1,14 @@ +#include <locale.h> +#include <stdio.h> + +static int +do_test (void) +{ + locale_t d = duplocale (LC_GLOBAL_LOCALE); + if (d != (locale_t) 0) + freelocale (d); + return 0; +} + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |