summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-08-17 01:49:42 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:15:38 -0500
commitc0e60d053598a1d8cd1e3367a38a001ef7c1992a (patch)
tree4d0502ee2c5ff49494b1e0089ac9c4254de78759 /source4/lib
parent7d6bfb45bae5edfa4f58ef6c40a5cc7d048d6b1a (diff)
downloadsamba-c0e60d053598a1d8cd1e3367a38a001ef7c1992a.tar.gz
samba-c0e60d053598a1d8cd1e3367a38a001ef7c1992a.tar.bz2
samba-c0e60d053598a1d8cd1e3367a38a001ef7c1992a.zip
r17578: in standalone talloc build ensure we get intptr_t if available (which
makes the discard_const stuff nicer) (This used to be commit 662f01f8ba861a5ef1d5ee724ed2b3ab9812597a)
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/talloc/talloc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/lib/talloc/talloc.c b/source4/lib/talloc/talloc.c
index 5a14109190..fc0462929c 100644
--- a/source4/lib/talloc/talloc.c
+++ b/source4/lib/talloc/talloc.c
@@ -36,6 +36,9 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
#if defined(HAVE_STDARG_H)
#include <stdarg.h>