From 03c0e1511e8fac521f959f4c21e7abbdf6572a61 Mon Sep 17 00:00:00 2001 From: Antony Pavlov Date: Tue, 6 May 2014 11:16:50 +0400 Subject: [PATCH] stdlib.h: include missed types.h We use 'u32' type in stdlib.h so we have to include types.h. Signed-off-by: Antony Pavlov Signed-off-by: Sascha Hauer --- include/stdlib.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/stdlib.h b/include/stdlib.h index 07d6e582a..f3185069f 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,6 +1,8 @@ #ifndef __STDLIB_H #define __STDLIB_H +#include + #define RAND_MAX 32767 /* return a pseudo-random integer in the range [0, RAND_MAX] */