From 7b556edcb9b7768021f19b409baa76aa8ac52350 Mon Sep 17 00:00:00 2001 From: Dylan Lom Date: Tue, 9 Feb 2021 18:33:25 +1100 Subject: [PATCH] Move util/util.h to util.h --- src/countdown.c | 3 ++- src/line.c | 3 ++- src/stopwatch.c | 3 ++- src/{util => }/util.h | 0 4 files changed, 6 insertions(+), 3 deletions(-) rename src/{util => }/util.h (100%) diff --git a/src/countdown.c b/src/countdown.c index 7d30b91..9ee3eee 100644 --- a/src/countdown.c +++ b/src/countdown.c @@ -18,7 +18,8 @@ #include #include #include -#include "util/util.h" + +#include "util.h" const char* argv0; diff --git a/src/line.c b/src/line.c index 6006af5..61c3538 100644 --- a/src/line.c +++ b/src/line.c @@ -18,7 +18,8 @@ #include #include #include -#include "util/util.h" + +#include "util.h" const char* argv0; diff --git a/src/stopwatch.c b/src/stopwatch.c index 50528a1..b8f80e0 100644 --- a/src/stopwatch.c +++ b/src/stopwatch.c @@ -18,7 +18,8 @@ #include #include #include -#include "util/util.h" + +#include "util.h" const char* argv0; diff --git a/src/util/util.h b/src/util.h similarity index 100% rename from src/util/util.h rename to src/util.h