stdint is a bad name, use types.h

add u64
signed-off-by: ronald g. minnich


git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@29 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Ronald G. Minnich 2006-10-19 20:57:31 +00:00
commit 5b9b13edbd

View file

@ -1,5 +1,6 @@
/* data types */
typedef unsigned long u32;
typedef unsigned long long u64;
typedef unsigned int u32;
typedef unsigned short u16;
typedef unsigned char u8;