From f6c9fed7acaef5ff532a9cdf8d7f8a470fa7f73f Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 5 Oct 1996 13:38:29 +0000 Subject: - use waitpid for ultrix - don't use wait4 (This used to be commit 2aa612d676e634a892fdc50349f5b72732f0e91f) --- source3/lib/system.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'source3/lib/system.c') 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 } /******************************************************************* -- cgit