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