1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00

auxliar support for "locale" (to avoid portability problems)

This commit is contained in:
Roberto Ierusalimschy
1997-07-02 15:45:09 -03:00
parent d56e3a6481
commit 1a17211707
+23
View File
@@ -0,0 +1,23 @@
/*
** lualoc.h
** TecCGraf - PUC-Rio
** $Id: $
*/
#ifndef lualoc_h
#define lualoc_h
#ifndef OLD_ANSI
#include <locale.h>
#else
#define strcoll(a,b) strcmp(a,b)
#define setlocale(a,b) 0
#define LC_ALL 0
#define LC_COLLATE 0
#define LC_CTYPE 0
#define LC_MONETARY 0
#define LC_NUMERIC 0
#define LC_TIME 0
#endif
#endif