From 2f3d805a5ee08d36c4086b69f8512e5aee75da20 Mon Sep 17 00:00:00 2001 From: Justin Rocha Date: Thu, 5 Apr 2012 07:56:39 -0700 Subject: [PATCH] Forgot to fix the includes on lua_defs.go, it was being masked by my system install of lua. Fixes #4 even more (again). --- lua_defs.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua_defs.go b/lua_defs.go index 54e6d17..1b55268 100644 --- a/lua_defs.go +++ b/lua_defs.go @@ -1,9 +1,9 @@ package golua; /* -#include -#include -#include +#include "lua.h" +#include "lauxlib.h" +#include "lualib.h" */ import "C"