summaryrefslogtreecommitdiff
path: root/stdint.h
diff options
context:
space:
mode:
Diffstat (limited to 'stdint.h')
-rw-r--r--stdint.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/stdint.h b/stdint.h
new file mode 100644
index 0000000..dd9c546
--- /dev/null
+++ b/stdint.h
@@ -0,0 +1,10 @@
+#ifndef __STD_INT_H_
+#define __STD_INT_H_
+
+typedef unsigned char uint8_t;
+typedef unsigned short int uint16_t;
+typedef signed long int int32_t;
+typedef unsigned long int uint32_t;
+typedef unsigned __int64 uint64_t;
+
+#endif \ No newline at end of file