From 0e28a9d01b5ec2cba93aad782ee4d22c541194be Mon Sep 17 00:00:00 2001 From: Alex Szpakowski Date: Mon, 10 Feb 2014 02:32:24 -0400 Subject: [PATCH] Added a header guard for luasocket's lua.h wrapper --- src/libraries/luasocket/libluasocket/lua.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libraries/luasocket/libluasocket/lua.h b/src/libraries/luasocket/libluasocket/lua.h index e97bc2ac2..a280df842 100644 --- a/src/libraries/luasocket/libluasocket/lua.h +++ b/src/libraries/luasocket/libluasocket/lua.h @@ -1,3 +1,6 @@ +#ifndef LUA_WRAP_H +#define LUA_WRAP_H + #define LUA_COMPAT_ALL #include #include @@ -10,3 +13,5 @@ extern int luax_typerror(lua_State *L, int narg, const char *type); #endif + +#endif // LUA_WRAP_H