aboutsummaryrefslogtreecommitdiff
path: root/lualoc.h
diff options
context:
space:
mode:
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