From: Collin Funk Date: Fri, 10 Jan 2025 19:27:29 +0000 (-0800) Subject: sys_wait-h: Update comment. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=1cff0e266d469d149144456e2a745f4e40a01dab;p=gnulib.git 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. --- 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