foo
[eightysix] / kern / src / libc / inttypes.h
diff --git a/kern/src/libc/inttypes.h b/kern/src/libc/inttypes.h
new file mode 100644 (file)
index 0000000..27fc5ab
--- /dev/null
@@ -0,0 +1,11 @@
+#ifndef KLIBC_INTTYPES_H_
+#define KLIBC_INTTYPES_H_
+
+typedef signed char int8_t;
+typedef short int16_t;
+typedef long int32_t;
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned long uint32_t;
+
+#endif /* KLIBC_INTTYPES_H_ */