aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lauxlib.h b/lauxlib.h
index bbd96345..323798bc 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.h,v 1.74 2005/01/10 17:31:50 roberto Exp roberto $ 2** $Id: lauxlib.h,v 1.75 2005/03/29 16:20:48 roberto Exp roberto $
3** Auxiliary functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -15,7 +15,7 @@
15#include "lua.h" 15#include "lua.h"
16 16
17 17
18#if !LUA_COMPAT_GETN 18#if !defined(LUA_COMPAT_GETN)
19#define luaL_getn(L,i) lua_objsize(L, i) 19#define luaL_getn(L,i) lua_objsize(L, i)
20#define luaL_setn(L,i,j) ((void)0) /* no op! */ 20#define luaL_setn(L,i,j) ((void)0) /* no op! */
21#endif 21#endif