diff options
author | Patrick Williams <iawillia@us.ibm.com> | 2010-05-20 19:16:30 -0500 |
---|---|---|
committer | Patrick Williams <iawillia@us.ibm.com> | 2010-05-20 19:16:30 -0500 |
commit | d9d7e6c7247aaf5d2721d08a365e9c51ec18c870 (patch) | |
tree | 16f882f7d77eb293ac0417b43bb5680ee149efbd /src/include/stdint.h | |
parent | d5a43e2fa43f8178aaa7ca67a9615d3ab4e68dbb (diff) | |
download | talos-hostboot-d9d7e6c7247aaf5d2721d08a365e9c51ec18c870.tar.gz talos-hostboot-d9d7e6c7247aaf5d2721d08a365e9c51ec18c870.zip |
Create page manager.
Diffstat (limited to 'src/include/stdint.h')
-rw-r--r-- | src/include/stdint.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/stdint.h b/src/include/stdint.h index f5a30a9f5..1b7328d80 100644 --- a/src/include/stdint.h +++ b/src/include/stdint.h @@ -1,6 +1,8 @@ #ifndef __STDINT_H #define __STDINT_H +#include <stddef.h> + typedef char int8_t; typedef short int int16_t; typedef int int32_t; |