From 8229d69ace716b224c048c62ebe7c48508c0b2e3 Mon Sep 17 00:00:00 2001 From: "Jonathan J. Helmus" Date: Thu, 9 Jul 2026 16:47:21 -0500 Subject: [PATCH] Guard sys/syscall.h with HAVE_SYS_SYSCALL_H Guard sys/syscall.h in Modules/posixmodules.c with HAVE_SYS_SYSCALL_H --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 57db175336702e2..d71bc9253522201 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -153,7 +153,7 @@ #ifdef HAVE_LINUX_RANDOM_H # include // GRND_RANDOM #endif -#ifdef HAVE_GETRANDOM_SYSCALL +#ifdef HAVE_SYS_SYSCALL_H # include // syscall() #endif