diff options
| author | amelia squires <[email protected]> | 2024-09-08 05:13:11 -0500 |
|---|---|---|
| committer | amelia squires <[email protected]> | 2024-09-08 05:13:11 -0500 |
| commit | e9cb2e0f75cbfa6bde188b9e043ebfd8d30b9451 (patch) | |
| tree | 57368ce9ae49e89809171dc6ae85fde936a2b5f2 /src/reg.c | |
| parent | 6ca752754556c44c485c4534b5f3453c7a1490c7 (diff) | |
| parent | ab5c24cd0eb59b704cf98d388338293db3768c81 (diff) | |
merge rewrite-net-route-matching
Diffstat (limited to 'src/reg.c')
| -rw-r--r-- | src/reg.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -6,6 +6,7 @@ #include "math.h"
#include "net.h"
#include "thread.h"
+#include "test.h"
#include <signal.h>
#include <stdlib.h>
@@ -36,6 +37,7 @@ open_common(math); open_common(config);
open_common(net);
open_common(thread);
+open_common(test);
#define push(T, name)\
lua_pushstring(L, #name);\
@@ -62,6 +64,7 @@ int luaopen_lullaby(lua_State* L) { push(top, config);
push(top, net);
push(top, thread);
+ push(top, test);
luaI_tsets(L, top, "version", GIT_COMMIT)
//lreg("array", array_function_list);
//lreg("crypto", crypto_function_list);
|
