aboutsummaryrefslogtreecommitdiff
path: root/lualib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-23 14:28:12 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-23 14:28:12 -0300
commit35023355f21d2c508e2614dc8383d7535dd3a80a (patch)
tree060e939e2e89f30d7b4c35467692a082e59fc684 /lualib.h
parent39b79783297bee79db9853b63d199e120a009a8f (diff)
downloadlua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.gz
lua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.bz2
lua-35023355f21d2c508e2614dc8383d7535dd3a80a.zip
details for wchar
Diffstat (limited to 'lualib.h')
-rw-r--r--lualib.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lualib.h b/lualib.h
index 60fc3788..b9cde856 100644
--- a/lualib.h
+++ b/lualib.h
@@ -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 */
37typedef int l_charint; 39typedef int l_charint;