summaryrefslogtreecommitdiffstats
path: root/lib/ntdb/private.h
diff options
context:
space:
mode:
authorChristian Ambach <ambi@samba.org>2013-11-22 05:17:38 +0100
committerChristian Ambach <ambi@samba.org>2013-12-07 16:45:15 +0100
commit7be0e91ddecf019bf1d7247abc16397a0f80c911 (patch)
treec4b946c0b291514f0b3c37da802bed748b9dd983 /lib/ntdb/private.h
parent794db9ea31eabc23a85aeb34fd1d2f227c6682a8 (diff)
downloadsamba-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/private.h')
-rw-r--r--lib/ntdb/private.h5
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>