From 1cff0e266d469d149144456e2a745f4e40a01dab Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Fri, 10 Jan 2025 11:27:29 -0800 Subject: [PATCH] sys_wait-h: Update comment. * lib/sys_wait.in.h (WCOREDUMP): Remove comment about this macro being non-standardized since it was added by POSIX.1-2024. --- ChangeLog | 6 ++++++ lib/sys_wait.in.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d33a584ad8..99f913f1e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2025-01-10 Collin Funk + + sys_wait-h: Update comment. + * lib/sys_wait.in.h (WCOREDUMP): Remove comment about this macro being + non-standardized since it was added by POSIX.1-2024. + 2025-01-10 Paul Eggert doc: document some file system portability issues diff --git a/lib/sys_wait.in.h b/lib/sys_wait.in.h index 0a83ebc84c..b8c04cc92e 100644 --- a/lib/sys_wait.in.h +++ b/lib/sys_wait.in.h @@ -80,7 +80,7 @@ # define WSTOPSIG(x) (((x) >> 8) & 0x7f) # endif -/* True if the process dumped core. Not standardized by POSIX. */ +/* True if the process dumped core. */ # ifndef WCOREDUMP # define WCOREDUMP(x) ((x) & 0x80) # endif -- 2.39.5