diff options
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common.h b/common.h new file mode 100644 index 0000000..b316f20 --- /dev/null +++ b/common.h @@ -0,0 +1,9 @@ +#include "lua.h" +#include "lauxlib.h" +#include "lualib.h" +#include "luaT/luaT.h" +#include <stdio.h> +#include <stdlib.h> + +int nerv_error(lua_State *L, const char *err_mesg_fmt, ...); +int nerv_error_method_not_implemented(lua_State *L); |