summaryrefslogtreecommitdiff
path: root/vc++/inttypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'vc++/inttypes.h')
-rw-r--r--vc++/inttypes.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/vc++/inttypes.h b/vc++/inttypes.h
new file mode 100644
index 0000000..51f14e9
--- /dev/null
+++ b/vc++/inttypes.h
@@ -0,0 +1,7 @@
+typedef signed char int8_t;
+typedef signed short int16_t;
+typedef signed int int32_t;
+
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned int uint32_t;