From 727d0e886b2220c6ee4b48331c2ec7c3206037e1 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: (cherry picked from commit 37446b70de5416826823adad1360a73eb9bb67e1) --- include/os.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/os.h b/include/os.h index dfce9ce7c..b6ebebe7c 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