summaryrefslogtreecommitdiff
path: root/core/detect
diff options
context:
space:
mode:
authorruki <[email protected]>2021-06-30 22:40:57 +0800
committerruki <[email protected]>2021-06-30 22:40:57 +0800
commit88ab7bebc40bc91bbfd91b565be2236ebd8c5e72 (patch)
treea7fb4c94856f5381a8fb1fb4142e48162879c28d /core/detect
parent46fd1844fc7a5456c4cd56bc2c251ed635d037ca (diff)
use system lua-cjson
Diffstat (limited to 'core/detect')
-rw-r--r--core/detect/lua-cjson.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/detect/lua-cjson.c b/core/detect/lua-cjson.c
new file mode 100644
index 000000000..8e9d36ccd
--- /dev/null
+++ b/core/detect/lua-cjson.c
@@ -0,0 +1,7 @@
+int luaopen_cjson(void *l);
+
+int main()
+{
+ luaopen_cjson(0);
+ return 0;
+}