From 2cc0cc35a45b742a0d0539b2fd10a06ce19a985f Mon Sep 17 00:00:00 2001 From: Mike Lowis Date: Thu, 28 Jul 2016 10:47:02 -0400 Subject: [PATCH] Renamed util to stdc to better reflect it's purpose --- source/{util.h => stdc.h} | 0 tests/bstree.c | 2 +- tests/hash.c | 2 +- tests/main.c | 4 +--- tests/slist.c | 1 + tests/utf8.c | 2 +- 6 files changed, 5 insertions(+), 6 deletions(-) rename source/{util.h => stdc.h} (100%) 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) { -- 2.54.0