Author: metze Date: 2007-12-04 13:19:21 +0000 (Tue, 04 Dec 2007) New Revision: 26288
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=26288 Log: 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 Modified: branches/SAMBA_4_0/source/lib/events/events.h Changeset: Modified: branches/SAMBA_4_0/source/lib/events/events.h =================================================================== --- branches/SAMBA_4_0/source/lib/events/events.h 2007-12-04 11:56:23 UTC (rev 26287) +++ branches/SAMBA_4_0/source/lib/events/events.h 2007-12-04 13:19:21 UTC (rev 26288) @@ -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;
