diff options
author | Christian Ambach <ambi@samba.org> | 2013-11-22 05:17:38 +0100 |
---|---|---|
committer | Christian Ambach <ambi@samba.org> | 2013-12-07 16:45:15 +0100 |
commit | 7be0e91ddecf019bf1d7247abc16397a0f80c911 (patch) | |
tree | c4b946c0b291514f0b3c37da802bed748b9dd983 /lib/ntdb | |
parent | 794db9ea31eabc23a85aeb34fd1d2f227c6682a8 (diff) | |
download | samba-7be0e91ddecf019bf1d7247abc16397a0f80c911.tar.gz samba-7be0e91ddecf019bf1d7247abc16397a0f80c911.tar.xz samba-7be0e91ddecf019bf1d7247abc16397a0f80c911.zip |
lib/ntdb correct includes in private header
include all necessary headers when libreplace is not around
Signed-off-by: Christian Ambach <ambi@samba.org>
Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Rusty Russell <rusty@samba.org>
Diffstat (limited to 'lib/ntdb')
-rw-r--r-- | lib/ntdb/private.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ntdb/private.h b/lib/ntdb/private.h index 5efd2e0d92..249253758f 100644 --- a/lib/ntdb/private.h +++ b/lib/ntdb/private.h @@ -35,6 +35,7 @@ #include "system/select.h" #include "system/wait.h" #else +#include <stdarg.h> #include <stdint.h> #include <stdbool.h> #include <stdlib.h> @@ -47,6 +48,10 @@ #include <stdio.h> #include <utime.h> #include <unistd.h> +#include <ctype.h> +#include <string.h> +#include <sys/wait.h> +#include <time.h> #endif #include <assert.h> |