summaryrefslogtreecommitdiff
path: root/spec/fixtures/mixed_deploy_type/mdt.c
diff options
context:
space:
mode:
authorMike Vink <mike@pionative.com>2025-02-03 21:29:42 +0100
committerMike Vink <mike@pionative.com>2025-02-03 21:29:42 +0100
commit5155816b7b925dec5d5feb1568b1d7ceb00938b9 (patch)
treedeca28ea15e79f6f804c3d90d2ba757881638af5 /spec/fixtures/mixed_deploy_type/mdt.c
fetch tarballHEADmaster
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;
+}