diff options
author | katherine <shmibs@airen-no-jikken.icu> | 2019-05-27 18:23:10 -0700 |
---|---|---|
committer | katherine <shmibs@airen-no-jikken.icu> | 2019-05-27 18:23:10 -0700 |
commit | f5d36db355e570d772443d8755e83bf36ed85672 (patch) | |
tree | e60823592427c5253516eb21f4e61cea121271fd | |
parent | f5a3ab03375c86e7168c56a5e9e959612fdbe7f4 (diff) | |
download | confconf-f5d36db355e570d772443d8755e83bf36ed85672.tar.gz |
add uthash as a submodule
-rw-r--r-- | .gitmodules | 3 | ||||
m--------- | reqs/uthash | 0 | ||||
-rw-r--r-- | src/parse.h | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules index f873b17..760cb64 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "reqs/simple-opt"] path = reqs/simple-opt url = https://github.com/shmibs/simple-opt +[submodule "reqs/uthash"] + path = reqs/uthash + url = https://github.com/troydhanson/uthash.git diff --git a/reqs/uthash b/reqs/uthash new file mode 160000 +Subproject 8b214aefcb81df86a7e5e0d4fa20e59a6c18bc0 diff --git a/src/parse.h b/src/parse.h index 094d808..5771a07 100644 --- a/src/parse.h +++ b/src/parse.h @@ -3,7 +3,7 @@ #include "tok.h" -#include <uthash.h> +#include "../reqs/uthash/include/uthash.h" #include <stdbool.h> |