summaryrefslogtreecommitdiff
path: root/spec/fixtures/mixed_deploy_type/mdt.c
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/mixed_deploy_type/mdt.c')
-rw-r--r--spec/fixtures/mixed_deploy_type/mdt.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/fixtures/mixed_deploy_type/mdt.c b/spec/fixtures/mixed_deploy_type/mdt.c
new file mode 100644
index 0000000..a162ce2
--- /dev/null
+++ b/spec/fixtures/mixed_deploy_type/mdt.c
@@ -0,0 +1,6 @@
+#include "lua.h"
+
+int luaopen_mdt(lua_State *L) {
+ lua_pushstring(L, "mdt.c");
+ return 1;
+}