diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2015-05-28 16:39:09 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2015-05-28 16:40:43 +0200 |
commit | 1aeda8a95f10002ad99920ee0610533b5aa7664b (patch) | |
tree | 1daad227498d2f827b2c5741288f1bd8338688da | |
parent | 712811e9bb53564fe27631c0cdaf0e7adb521396 (diff) | |
download | newlib-cygwin-2.0.zip newlib-cygwin-2.0.tar.gz newlib-cygwin-2.0.tar.bz2 |
Fix comment in sys/wait.hgithub/cygwin-2.0cygwin-2.0
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/include/sys/wait.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index d1b0afe..632f2ac 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2015-05-28 Corinna Vinschen <vinschen@redhat.com> + + * libc/include/sys/wait.h: Fix comment. + 2015-05-27 David Stacey <drstacey@tiscali.co.uk> * libc/argz/argz_replace.c: Fix potential memory leak. diff --git a/newlib/libc/include/sys/wait.h b/newlib/libc/include/sys/wait.h index 73fe372..f17e53f 100644 --- a/newlib/libc/include/sys/wait.h +++ b/newlib/libc/include/sys/wait.h @@ -11,7 +11,7 @@ extern "C" { #define WUNTRACED 2 /* A status looks like: - <2 bytes info> <2 bytes code> + <1 byte info> <1 byte code> <code> == 0, child has exited, info is the exit value <code> == 1..7e, child has exited, info is the signal number. |