9
0
Fork 0

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 <antonynpavlov@gmail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Antony Pavlov 2014-05-06 11:16:50 +04:00 committed by Sascha Hauer
parent 0839e3f402
commit 03c0e1511e
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#ifndef __STDLIB_H
#define __STDLIB_H
#include <types.h>
#define RAND_MAX 32767
/* return a pseudo-random integer in the range [0, RAND_MAX] */