aboutsummaryrefslogtreecommitdiffstats
path: root/compat52.h
diff options
context:
space:
mode:
authorLibravatarLibravatar William Ahern <william@solaris.(none)> 2013-02-27 23:56:25 -0800
committerLibravatarLibravatar William Ahern <william@solaris.(none)> 2013-02-27 23:56:25 -0800
commitca83ecf1cfa7ab31483c64d47332a255dc66afa7 (patch)
tree450c677b5e9e72dea210c787b3b2a2824e2cbebb /compat52.h
parent5443928c5a8bf9f4dbbde0a50b17d81ca6cc4eb0 (diff)
downloadluaossl-ca83ecf1cfa7ab31483c64d47332a255dc66afa7.tar.gz
luaossl-ca83ecf1cfa7ab31483c64d47332a255dc66afa7.tar.bz2
luaossl-ca83ecf1cfa7ab31483c64d47332a255dc66afa7.zip
-n
add LUA_FILEHANDLE to compat52.h
Diffstat (limited to 'compat52.h')
-rw-r--r--compat52.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/compat52.h b/compat52.h
index eb2d903..22b1e44 100644
--- a/compat52.h
+++ b/compat52.h
@@ -133,6 +133,10 @@ static lua_Unsigned luaL_optunsigned(lua_State *L, int arg, lua_Unsigned def) {
} /* luaL_optunsigned() */
+#ifndef LUA_FILEHANDLE
+#define LUA_FILEHANDLE "FILE*"
+#endif
+
/*
* Lua 5.1 userdata is a simple FILE *, while LuaJIT is a struct with the
* first member a FILE *, similar to Lua 5.2.