From: Mike Lowis Date: Thu, 28 Jul 2016 14:47:02 +0000 (-0400) Subject: Renamed util to stdc to better reflect it's purpose X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=2cc0cc35a45b742a0d0539b2fd10a06ce19a985f;p=projs%2Falib.git Renamed util to stdc to better reflect it's purpose --- diff --git a/source/util.h b/source/stdc.h similarity index 100% rename from source/util.h rename to source/stdc.h diff --git a/tests/bstree.c b/tests/bstree.c index b94f10c..f0ab631 100644 --- a/tests/bstree.c +++ b/tests/bstree.c @@ -2,7 +2,7 @@ #include "atf.h" // File To Test -#include +#include #include typedef struct { diff --git a/tests/hash.c b/tests/hash.c index cd280ca..f47c4a3 100644 --- a/tests/hash.c +++ b/tests/hash.c @@ -2,7 +2,7 @@ #include "atf.h" // File To Test -#include +#include #include static const uint Num_Iterations = 1000000; diff --git a/tests/main.c b/tests/main.c index f2109f6..4e941c4 100644 --- a/tests/main.c +++ b/tests/main.c @@ -1,8 +1,6 @@ #include "atf.h" -#include +#include #include -#include -#include int main(int argc, char** argv) { diff --git a/tests/slist.c b/tests/slist.c index 52f13f8..cf5ce9e 100644 --- a/tests/slist.c +++ b/tests/slist.c @@ -2,6 +2,7 @@ #include "atf.h" // File To Test +#include #include //----------------------------------------------------------------------------- diff --git a/tests/utf8.c b/tests/utf8.c index 7dd6bea..fe936ef 100644 --- a/tests/utf8.c +++ b/tests/utf8.c @@ -1,8 +1,8 @@ // Unit Test Framework Includes #include "atf.h" -#include // File To Test +#include #include static bool is_rejected(char* seq) {