r26288: events: events.h uses uint16_t so it needs stdint.h
authorStefan Metzmacher <metze@samba.org>
Tue, 4 Dec 2007 12:19:21 +0000 (13:19 +0100)
committerStefan Metzmacher <metze@samba.org>
Fri, 21 Dec 2007 04:48:10 +0000 (05:48 +0100)
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)

source4/lib/events/events.h

index d30ffda2e2a4e34859786b3eed481c2df69b588e..2868fefc384e64e76bb808a9ba929a0453d60c0f 100644 (file)
@@ -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;