diff options
Diffstat (limited to 'spec/fixtures/c_module.c')
-rw-r--r-- | spec/fixtures/c_module.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/fixtures/c_module.c b/spec/fixtures/c_module.c deleted file mode 100644 index 4c27dda8..00000000 --- a/spec/fixtures/c_module.c +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | #include <lua.h> | ||
2 | #include <lauxlib.h> | ||
3 | |||
4 | int luaopen_c_module(lua_State* L) { | ||
5 | lua_newtable(L); | ||
6 | lua_pushinteger(L, 1); | ||
7 | lua_setfield(L, -2, "c_module"); | ||
8 | return 1; | ||
9 | } | ||