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 | eda53f915dc319cec7a4fe680734db87a113fe5e (patch) | |
| tree | 57368ce9ae49e89809171dc6ae85fde936a2b5f2 /src/reg.c | |
| parent | 4523c0c2ae946e1e5c982a01c961d3aaacd7858a (diff) | |
| parent | 86fbbbc48b76436cddd08b04bd0d751c6e51d29f (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);
|
