aboutsummaryrefslogtreecommitdiff
path: root/lualoc.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-16 16:25:59 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-16 16:25:59 -0300
commit451124005b061157a6f5ac977c79ef49b4012335 (patch)
treef187e99fd7c25044eef0d163cc54d143a9c1699d /lualoc.h
parent2f1fa3d427b783490c2f0efb7dfe0090e291692f (diff)
downloadlua-451124005b061157a6f5ac977c79ef49b4012335.tar.gz
lua-451124005b061157a6f5ac977c79ef49b4012335.tar.bz2
lua-451124005b061157a6f5ac977c79ef49b4012335.zip
Standard I/O (and system) library
Diffstat (limited to 'lualoc.h')
-rw-r--r--lualoc.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/lualoc.h b/lualoc.h
deleted file mode 100644
index 957b08a5..00000000
--- a/lualoc.h
+++ /dev/null
@@ -1,28 +0,0 @@
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
7#ifndef lualoc_h
8#define lualoc_h
9
10
11#ifndef OLD_ANSI
12#include <locale.h>
13#else
14
15#define strcoll(a,b) strcmp(a,b)
16#define setlocale(a,b) 0
17#define LC_ALL 0
18#define LC_COLLATE 0
19#define LC_CTYPE 0
20#define LC_MONETARY 0
21#define LC_NUMERIC 0
22#define LC_TIME 0
23
24#define strerror(e) "O.S. is unable to define the error"
25
26#endif
27
28#endif