summaryrefslogtreecommitdiff
path: root/src/libc/stdint.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libc/stdint.h')
-rw-r--r--src/libc/stdint.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/libc/stdint.h b/src/libc/stdint.h
new file mode 100644
index 0000000..e0f35b6
--- /dev/null
+++ b/src/libc/stdint.h
@@ -0,0 +1,15 @@
+#ifndef STDINT_H
+#define STDINT_H
+
+#if defined( __PCC__ ) || defined( __TINYC__ )
+// TODO: no stdint.h in pcc-libs/pcc or tcc, mock one, but this one is
+// most likely very incorrect
+typedef unsigned int uint32_t;
+typedef signed int int32_t;
+typedef unsigned short uint16_t;
+typedef signed short int16_t;
+typedef unsigned char uint8_t;
+typedef signed char int8_t;
+#endif
+
+#endif // STDINT_H