about summary refs log tree commit diff
path: root/REORG.TODO/locale/tst-duplocale.c
diff options
context:
space:
mode:
Diffstat (limited to 'REORG.TODO/locale/tst-duplocale.c')
-rw-r--r--REORG.TODO/locale/tst-duplocale.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/REORG.TODO/locale/tst-duplocale.c b/REORG.TODO/locale/tst-duplocale.c
new file mode 100644
index 0000000000..53e5fbb8fe
--- /dev/null
+++ b/REORG.TODO/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"