aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index a092f829..0443c9d4 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.313 2014/08/01 17:33:08 roberto Exp roberto $ 2** $Id: lua.h,v 1.314 2014/08/21 20:07:56 roberto Exp roberto $
3** Lua - A Scripting Language 3** Lua - A Scripting Language
4** Lua.org, PUC-Rio, Brazil (http://www.lua.org) 4** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
5** See Copyright Notice at the end of this file 5** See Copyright Notice at the end of this file
@@ -379,7 +379,7 @@ LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud);
379** compatibility macros for unsigned conversions 379** compatibility macros for unsigned conversions
380** =============================================================== 380** ===============================================================
381*/ 381*/
382#if defined(LUA_COMPAT_APIUNSIGNED) 382#if defined(LUA_COMPAT_APIINTCASTS)
383 383
384#define lua_pushunsigned(L,n) lua_pushinteger(L, (lua_Integer)(n)) 384#define lua_pushunsigned(L,n) lua_pushinteger(L, (lua_Integer)(n))
385#define lua_tounsignedx(L,i,is) ((lua_Integer)lua_tointegerx(L,i,is)) 385#define lua_tounsignedx(L,i,is) ((lua_Integer)lua_tointegerx(L,i,is))