Author: paulg Date: 2006-05-16 17:04:56 +0000 (Tue, 16 May 2006) New Revision: 15645
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15645 Log: Now that we are referencing uint32_t and other data types defined in <stdint.h>, ensure that it is present. (Not all implementations pull it in when <sys/types.h> is used). Paul Modified: trunk/source/include/includes.h Changeset: Modified: trunk/source/include/includes.h =================================================================== --- trunk/source/include/includes.h 2006-05-16 17:02:26 UTC (rev 15644) +++ trunk/source/include/includes.h 2006-05-16 17:04:56 UTC (rev 15645) @@ -93,6 +93,10 @@ #include <sys/types.h> +#ifdef HAVE_STDINT_H +#include <stdint.h> +#endif + #ifdef TIME_WITH_SYS_TIME #include <sys/time.h> #include <time.h>
