diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-10-05 13:38:29 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-10-05 13:38:29 +0000 |
commit | 2aa612d676e634a892fdc50349f5b72732f0e91f (patch) | |
tree | 23bdeaf7a089fdd788aed08ac1b9f71ca463b179 /source/lib/system.c | |
parent | 92566ecc315c29da6e9aaa67ddae33e64f5bcc67 (diff) | |
download | samba-2aa612d676e634a892fdc50349f5b72732f0e91f.tar.gz samba-2aa612d676e634a892fdc50349f5b72732f0e91f.tar.xz samba-2aa612d676e634a892fdc50349f5b72732f0e91f.zip |
- use waitpid for ultrix
- don't use wait4
Diffstat (limited to 'source/lib/system.c')
-rw-r--r-- | source/lib/system.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source/lib/system.c b/source/lib/system.c index 5ece0ca0241..995c6beed51 100644 --- a/source/lib/system.c +++ b/source/lib/system.c @@ -146,11 +146,7 @@ The wait() calls vary between systems ********************************************************************/ int sys_waitpid(pid_t pid,int *status,int options) { -#ifdef USE_WAITPID return waitpid(pid,status,options); -#else - return wait4(pid,status,options,NULL); -#endif } /******************************************************************* |