From 95cff1133d24374360c82c10756e40914edd5483 Mon Sep 17 00:00:00 2001 From: Daniel Bertalan Date: Sun, 10 Apr 2022 11:18:12 +0200 Subject: [PATCH] LibC: Unconditionally include bits/posix1_lim.h from limits.h No other system seems to put this behind a _USE_POSIX ifdef. --- Userland/Libraries/LibC/limits.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Userland/Libraries/LibC/limits.h b/Userland/Libraries/LibC/limits.h index f7365e6e61d2ce..4e767b0ecabd79 100644 --- a/Userland/Libraries/LibC/limits.h +++ b/Userland/Libraries/LibC/limits.h @@ -92,6 +92,4 @@ #define TZNAME_MAX 64 -#ifdef __USE_POSIX -# include -#endif +#include