diff options
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.16 2001/02/22 17:15:18 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.17 2001/02/23 17:17:25 roberto Exp roberto $ |
3 | ** Lua standard libraries | 3 | ** Lua standard libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -31,7 +31,9 @@ LUALIB_API void lua_dblibopen (lua_State *L); | |||
31 | */ | 31 | */ |
32 | 32 | ||
33 | /* macro to `unsign' a character */ | 33 | /* macro to `unsign' a character */ |
34 | #ifndef uchar | ||
34 | #define uchar(c) ((unsigned char)(c)) | 35 | #define uchar(c) ((unsigned char)(c)) |
36 | #endif | ||
35 | 37 | ||
36 | /* integer type to hold the result of fgetc */ | 38 | /* integer type to hold the result of fgetc */ |
37 | typedef int l_charint; | 39 | typedef int l_charint; |