summaryrefslogtreecommitdiff
path: root/rt/stdint.h
diff options
context:
space:
mode:
Diffstat (limited to 'rt/stdint.h')
-rw-r--r--rt/stdint.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/rt/stdint.h b/rt/stdint.h
new file mode 100644
index 0000000..f7ee056
--- /dev/null
+++ b/rt/stdint.h
@@ -0,0 +1,21 @@
+#ifndef RT_STDINT_H
+#define RT_STDINT_H
+
+#include "assert.h"
+
+typedef unsigned char uchar;
+
+typedef unsigned short int ushort;
+
+typedef unsigned int uint;
+
+typedef unsigned long int ulong;
+
+typedef long long int vlong;
+typedef unsigned long long int uvlong;
+
+// Machine specific types
+
+#include <arch_stdint.h>
+
+#endif \ No newline at end of file