From 37446b70de5416826823adad1360a73eb9bb67e1 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Wed, 11 Sep 2024 11:52:11 +0200 Subject: [PATCH] os.h: drop unnecessary guard on stdlib.h include It's a standard C header, that's always present, so no extra guard needed. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- include/os.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/os.h b/include/os.h index 51be06277..361c4552f 100644 --- a/include/os.h +++ b/include/os.h @@ -50,9 +50,7 @@ SOFTWARE. #include "misc.h" #include #include -#if defined(HAVE_REALLOCARRAY) -#include /* for reallocarray */ -#endif +#include #include #ifdef MONOTONIC_CLOCK #include