diff options
author | sanine <sanine.not@pm.me> | 2022-08-28 12:41:53 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-28 12:41:53 -0500 |
commit | 91726809f9e97d8d4fb7b6c0642234ff96535bdd (patch) | |
tree | 850fd9cc1f391744b48021b83e29e4bd961eda32 /src/test | |
parent | 0d6ece00397ebb9215ccf1af06cce22c3a94197e (diff) |
add channel_init() and channel_reset()
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/mossrose-test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/mossrose-test.c b/src/test/mossrose-test.c index 88ce5ff..e71fc2a 100644 --- a/src/test/mossrose-test.c +++ b/src/test/mossrose-test.c @@ -1,8 +1,10 @@ +#include <plibsys.h> #include "mossrose-test.h" int main() { + p_libsys_init(); RUN_TESTS() return 0; } |