From: Kees van Reeuwijk Date: Fri, 9 Jul 2010 23:58:37 +0000 (+0000) Subject: Let string.h include stdint.h, since some programs, in particular llvm/clang, X-Git-Tag: v3.1.8~266 X-Git-Url: http://zhaoyanbai.com/repos/icons/apache_pb.png?a=commitdiff_plain;h=a5dfadeb704d29a6ee8d29edd5a2ebe4f2c20134;p=minix.git Let string.h include stdint.h, since some programs, in particular llvm/clang, assume that this happens. --- diff --git a/include/string.h b/include/string.h index 725af17ed..a3268c5a7 100644 --- a/include/string.h +++ b/include/string.h @@ -5,6 +5,12 @@ #ifndef _STRING_H #define _STRING_H +/* Not strictly necessary, but some sources, in particular + * llvm, assume the defines in stdint.h are available when + * string.h is include. + */ +#include + #define NULL ((void *)0) #ifndef _SIZE_T