removed more old libs
[TestXSLT.git] / libiconv / libcharset / tools / locale_codeset.c
diff --git a/libiconv/libcharset/tools/locale_codeset.c b/libiconv/libcharset/tools/locale_codeset.c
deleted file mode 100644 (file)
index a9c209d..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Prints the system dependent name for the current locale's codeset. */
-
-#define _XOPEN_SOURCE 500  /* Needed on AIX 3.2.5 */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <locale.h>
-#include <langinfo.h>
-
-int main ()
-{
-  setlocale(LC_ALL, "");
-  printf("%s\n", nl_langinfo(CODESET));
-  exit(0);
-}