lualoc.h 438 B

12345678910111213141516171819202122232425262728
  1. /*
  2. ** lualoc.h
  3. ** TecCGraf - PUC-Rio
  4. ** $Id: lualoc.h,v 1.1 1997/07/02 18:45:09 roberto Exp roberto $
  5. */
  6. #ifndef lualoc_h
  7. #define lualoc_h
  8. #ifndef OLD_ANSI
  9. #include <locale.h>
  10. #else
  11. #define strcoll(a,b) strcmp(a,b)
  12. #define setlocale(a,b) 0
  13. #define LC_ALL 0
  14. #define LC_COLLATE 0
  15. #define LC_CTYPE 0
  16. #define LC_MONETARY 0
  17. #define LC_NUMERIC 0
  18. #define LC_TIME 0
  19. #define strerror(e) "O.S. is unable to define the error"
  20. #endif
  21. #endif