summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-12-04 13:19:21 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:48:10 +0100
commitfb3877df0b834dcb180dac639856c80a0c2bb5b9 (patch)
tree5af55749ddc742037479f65d8dfae293a6919d52 /source4/lib
parent0063e7a1e929db4f951bcde2dab24db517308403 (diff)
downloadsamba-fb3877df0b834dcb180dac639856c80a0c2bb5b9.tar.gz
samba-fb3877df0b834dcb180dac639856c80a0c2bb5b9.tar.bz2
samba-fb3877df0b834dcb180dac639856c80a0c2bb5b9.zip
r26288: events: events.h uses uint16_t so it needs stdint.h
stdlib.h isn't used directly and talloc.h brings it in anyway this fixes the build of lib/events/./events_wrap.c on older systems linux versions. metze (This used to be commit 60b852688c65edf011d26376f69b615149a49b2e)
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/events/events.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/events/events.h b/source4/lib/events/events.h
index d30ffda2e2..2868fefc38 100644
--- a/source4/lib/events/events.h
+++ b/source4/lib/events/events.h
@@ -22,8 +22,8 @@
#ifndef __EVENTS_H__
#define __EVENTS_H__
+#include <stdint.h>
#include <talloc.h>
-#include <stdlib.h>
struct event_context;
struct event_ops;