aboutsummaryrefslogtreecommitdiff
path: root/test/testfiles/with_external_dep.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/testfiles/with_external_dep.c')
-rw-r--r--test/testfiles/with_external_dep.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/testfiles/with_external_dep.c b/test/testfiles/with_external_dep.c
deleted file mode 100644
index 16435d8f..00000000
--- a/test/testfiles/with_external_dep.c
+++ /dev/null
@@ -1,10 +0,0 @@
1#include <foo/foo.h>
2#include <lua.h>
3#include <lauxlib.h>
4
5int luaopen_with_external_dep(lua_State* L) {
6 lua_newtable(L);
7 lua_pushinteger(L, FOO);
8 lua_setfield(L, -2, "foo");
9 return 1;
10}