libc for the amiga version
[retrocrawl] / src / amiga / libc / inttypes.h
diff --git a/src/amiga/libc/inttypes.h b/src/amiga/libc/inttypes.h
new file mode 100644 (file)
index 0000000..1edfed1
--- /dev/null
@@ -0,0 +1,17 @@
+#ifndef AMIGA_LIBC_INTTYPES_H_
+#define AMIGA_LIBC_INTTYPES_H_
+
+typedef char int8_t;
+typedef short int16_t;
+typedef int int32_t;
+typedef long long int64_t;
+
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned int uint32_t;
+typedef unsigned long long uint64_t;
+
+typedef int32_t intptr_t;
+typedef uint32_t uintptr_t;
+
+#endif /* AMIGA_LIBC_INTTYPES_H_ */