summaryrefslogtreecommitdiffstats
path: root/src/include/stdint.h
diff options
context:
space:
mode:
authorPatrick Williams <iawillia@us.ibm.com>2010-05-18 15:55:03 -0500
committerPatrick Williams <iawillia@us.ibm.com>2010-05-18 15:55:03 -0500
commitcf138201c24fdc83ee7835b65cce67e7d7a85e70 (patch)
tree16650f82ac519ff60bc9100b4e90868463bd987d /src/include/stdint.h
parent9ea98f274e18a3407ce109a331553e1c910274d9 (diff)
downloadtalos-hostboot-cf138201c24fdc83ee7835b65cce67e7d7a85e70.tar.gz
talos-hostboot-cf138201c24fdc83ee7835b65cce67e7d7a85e70.zip
Create simple console.
Diffstat (limited to 'src/include/stdint.h')
-rw-r--r--src/include/stdint.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/stdint.h b/src/include/stdint.h
new file mode 100644
index 000000000..350f4c3da
--- /dev/null
+++ b/src/include/stdint.h
@@ -0,0 +1,17 @@
+#ifndef __STDINT_H
+#define __STDINT_H
+
+typedef char int8_t;
+typedef short int int16_t;
+typedef long int int32_t;
+typedef long long int int64_t;
+
+typedef unsigned char uint8_t;
+typedef unsigned short int uint16_t;
+typedef unsigned long int uint32_t;
+typedef unsigned long long int uint64_t;
+
+typedef uint64_t size_t;
+typedef int64_t ssize_t;
+
+#endif
OpenPOWER on IntegriCloud