diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-04-20 15:47:19 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-04-20 16:25:16 +0200 |
commit | 20e1ba1c09631a3b1c850d9c8cbb42d863d0cb39 (patch) | |
tree | e5979a733570c217bda2d9cce309d51b10f89369 /lib/replace/system | |
parent | e5233ccf9e32cd5d399f91512d7f310d43558e31 (diff) | |
download | samba-20e1ba1c09631a3b1c850d9c8cbb42d863d0cb39.tar.gz samba-20e1ba1c09631a3b1c850d9c8cbb42d863d0cb39.tar.bz2 samba-20e1ba1c09631a3b1c850d9c8cbb42d863d0cb39.zip |
Only define waitpid replacement if wait4 is available. (It isn't on
Windows.)
Diffstat (limited to 'lib/replace/system')
-rw-r--r-- | lib/replace/system/wait.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/replace/system/wait.h b/lib/replace/system/wait.h index 5784b1ae92..79583ad2ab 100644 --- a/lib/replace/system/wait.h +++ b/lib/replace/system/wait.h @@ -52,4 +52,8 @@ typedef int sig_atomic_t; #endif +#if !defined(HAVE_WAITPID) && defined(HAVE_WAIT4) +int rep_waitpid(pid_t pid,int *status,int options) +#endif + #endif |