From e99d35bb7ee3370a5a8688be320edd1df3dd0cbc Mon Sep 17 00:00:00 2001 From: Nathan Bossart Date: Wed, 15 Jan 2025 17:36:09 -0600 Subject: [PATCH v4 2/2] Remove redeclarations of signal functions on Windows. --- src/include/port/win32_port.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/include/port/win32_port.h b/src/include/port/win32_port.h index 7900272e8d..ff7028bdc8 100644 --- a/src/include/port/win32_port.h +++ b/src/include/port/win32_port.h @@ -154,14 +154,6 @@ #define sigmask(sig) ( 1 << ((sig)-1) ) -/* Signal function return values */ -#undef SIG_DFL -#undef SIG_ERR -#undef SIG_IGN -#define SIG_DFL ((pqsigfunc)0) -#define SIG_ERR ((pqsigfunc)-1) -#define SIG_IGN ((pqsigfunc)1) - /* Some extra signals */ #define SIGHUP 1 #define SIGQUIT 3 -- 2.39.5 (Apple Git-154)