Some more standard types and defines (libpayload)

Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6414 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi 2011-03-01 07:13:10 +00:00 committed by Patrick Georgi
parent b1eab1495c
commit fa622fcc5a
2 changed files with 7 additions and 0 deletions

View File

@ -40,4 +40,6 @@
# endif
#endif
#define UINT_MAX (unsigned int)0xffffffff
#endif

View File

@ -27,4 +27,9 @@
* SUCH DAMAGE.
*/
#ifndef __STDINT_H
#define __STDINT_H
#include <arch/types.h>
typedef unsigned long uintptr_t;
#endif