langinfo.h 308 B

123456789101112131415161718192021
  1. /*
  2. * Part of Scheme 48 1.9. See file COPYING for notices and license.
  3. *
  4. * Authors: Mike Sperber
  5. */
  6. /*
  7. * If we have a sys/langinfo.h, then include it.
  8. */
  9. #if defined(HAVE_LANGINFO_H)
  10. #include <langinfo.h>
  11. #else
  12. typedef int nl_item;
  13. #define CODESET 0
  14. extern char *nl_langinfo(nl_item item);
  15. #endif