summaryrefslogtreecommitdiff
path: root/stdint.h
diff options
context:
space:
mode:
authoryazoo <yazoo>2008-01-29 07:57:27 +0000
committeryazoo <yazoo>2008-01-29 07:57:27 +0000
commit6d8020e380791e063a70b3802fed2b72de7dcdec (patch)
treeb45b237f319e08caa0e02e3c7be5102d5b8abf7e /stdint.h
parent8522e44467ebcac54201def2c6583639e74e9e24 (diff)
*** empty log message ***
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