Cygwin: Remove union wait

This patch follows glibc.  Original commit message:

Author:	Florian Weimer <fweimer@redhat.com>
Date:   Thu, 14 Apr 2016 06:54:57 +0000

Remove union wait [BZ #19613]

The overloading approach in the W* macros was incompatible with
integer expressions of a type different from int.  Applications
using union wait and these macros will have to migrate to the
POSIX-specified int status type.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen
2018-08-24 20:57:47 +02:00
parent d13c84eb07
commit 6706b19a97
4 changed files with 23 additions and 82 deletions

View File

@@ -22,6 +22,10 @@ What changed:
- Support Unicode 10.
- Following glibc, `union wait' has now been removed. Applications
using union wait and these macros will have to migrate to the
POSIX-specified int status type.
Bug Fixes
---------