From 1f7e8e937d0e71e7eb3b5deab38b34d0a0159d88 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 17 Sep 2026 21:50:34 +0200 Subject: Added include guards --- src/utils/sleep.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/utils/sleep.h') diff --git a/src/utils/sleep.h b/src/utils/sleep.h index 7c0a84d..28bb807 100644 --- a/src/utils/sleep.h +++ b/src/utils/sleep.h @@ -1,3 +1,6 @@ +#ifndef UTILS_SLEEP_H +#define UTILS_SLEEP_H + #define BASE_SLEEP_TIME 500 STATIC void msleep(int); @@ -50,3 +53,5 @@ msleep(int milliseconds) } #endif + +#endif /* UTILS_SLEEP_H */ -- cgit v1.3