diff options
author | mike <mike@FreeBSD.org> | 2002-06-03 23:13:11 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-06-03 23:13:11 +0000 |
commit | 9b39ed7b9416390758870edd85ae19dbee651312 (patch) | |
tree | a21f8895cdfa7f50dfa0df9ee4a19954b3330375 /games/sail | |
parent | d9ab0c8dbcc15d1f11216307b235370b43767371 (diff) | |
download | FreeBSD-src-9b39ed7b9416390758870edd85ae19dbee651312.zip FreeBSD-src-9b39ed7b9416390758870edd85ae19dbee651312.tar.gz |
Use POSIX macros for wait(2)-style status information instead of the
deprecated 4.2/4.3BSD wait union. Fix some nearby pid_t/int
confusion.
Diffstat (limited to 'games/sail')
-rw-r--r-- | games/sail/pl_1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/sail/pl_1.c b/games/sail/pl_1.c index e51f4f9..ee12e7f 100644 --- a/games/sail/pl_1.c +++ b/games/sail/pl_1.c @@ -126,8 +126,8 @@ choke() void child() { - union wait status; - int pid; + pid_t pid; + int status; (void) signal(SIGCHLD, SIG_IGN); do { |