diff options
author | EuAndreh <eu@euandre.org> | 2024-04-05 16:07:39 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-04-05 17:08:08 -0300 |
commit | ea60b1b08015060a08b1ead38e4e81c44a88017f (patch) | |
tree | 9be302cafc856410383e1b1ab315f8b1a371153d /tests/lib.c | |
parent | git mv meta.capim meta.weave (diff) | |
download | pindaiba-ea60b1b08015060a08b1ead38e4e81c44a88017f.tar.gz pindaiba-ea60b1b08015060a08b1ead38e4e81c44a88017f.tar.xz |
Move unit tests out of src/*.c into tests/
Diffstat (limited to 'tests/lib.c')
-rw-r--r-- | tests/lib.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/lib.c b/tests/lib.c new file mode 100644 index 0000000..14fdd4f --- /dev/null +++ b/tests/lib.c @@ -0,0 +1,8 @@ +#include "../src/lib.c" + + +int +main(void) { + int rc = 0; + return rc; +} |