summaryrefslogtreecommitdiff
path: root/vc++/inttypes.h
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2008-07-18 14:57:36 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2008-07-18 14:57:36 +0000
commitd1e80dc431815df3ac6eeed654eeccaf8d6beea7 (patch)
treecc8b20e9558f81920c490fe4ec1384c8b7a0662b /vc++/inttypes.h
downloadlibmpeg2-tarball-master.tar.gz
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;