Let string.h include stdint.h, since some programs, in particular llvm/clang,

assume that this happens.
This commit is contained in:
Kees van Reeuwijk 2010-07-09 23:58:37 +00:00
parent 8427d774b6
commit a5dfadeb70

View file

@ -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 <stdint.h>
#define NULL ((void *)0)
#ifndef _SIZE_T