From 1f617f8aa76b27de547adb34952633a7d2c85068 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Tue, 22 Jul 2025 13:22:49 +0200 Subject: [PATCH] hurd: do not include sys/prctl.h when it is not available --- lib/idmapping.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/idmapping.c b/lib/idmapping.c index e70a037b7..e55de97fb 100644 --- a/lib/idmapping.c +++ b/lib/idmapping.c @@ -12,10 +12,12 @@ #include #include #include -#include #if __has_include() # include #endif +#if __has_include() +# include +#endif #include "alloc/calloc.h" #include "alloc/x/xmalloc.h" -- 2.47.2