diff options
author | 2023-05-10 16:00:31 +0200 | |
---|---|---|
committer | 2023-05-10 16:00:31 +0200 | |
commit | 1d51c28d90a8c212dd9cf59191194855258e474b (patch) | |
tree | bcc483d84ca115b631fc831615a7517f093dbd79 /test/main.c | |
parent | b8af5757f76ee375d6af91410cd5260e2166b512 (diff) | |
download | utils-1d51c28d90a8c212dd9cf59191194855258e474b.tar.gz utils-1d51c28d90a8c212dd9cf59191194855258e474b.zip |
Update some reference on tests
Diffstat (limited to 'test/main.c')
-rw-r--r-- | test/main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/main.c b/test/main.c index 06d31a1..dace8e7 100644 --- a/test/main.c +++ b/test/main.c @@ -3,8 +3,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <list.h> -#include <map.h> +#include <utils.h> void test_list1(); void test_list2(); @@ -32,7 +31,7 @@ int main(int argc, char** argv) test_list5(); test_list6(); - test_map(); + test_map(); return 0; } |