From 35023355f21d2c508e2614dc8383d7535dd3a80a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 23 Feb 2001 14:28:12 -0300 Subject: details for wchar --- lualib.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lualib.h') diff --git a/lualib.h b/lualib.h index 60fc3788..b9cde856 100644 --- a/lualib.h +++ b/lualib.h @@ -1,5 +1,5 @@ /* -** $Id: lualib.h,v 1.16 2001/02/22 17:15:18 roberto Exp roberto $ +** $Id: lualib.h,v 1.17 2001/02/23 17:17:25 roberto Exp roberto $ ** Lua standard libraries ** See Copyright Notice in lua.h */ @@ -31,7 +31,9 @@ LUALIB_API void lua_dblibopen (lua_State *L); */ /* macro to `unsign' a character */ +#ifndef uchar #define uchar(c) ((unsigned char)(c)) +#endif /* integer type to hold the result of fgetc */ typedef int l_charint; -- cgit v1.2.3-55-g6feb