diff options
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/system.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c index 5ece0ca024..995c6beed5 100644 --- a/source3/lib/system.c +++ b/source3/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 } /******************************************************************* |