summaryrefslogtreecommitdiffstats
path: root/etc/inttypes.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-21 21:59:39 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-21 21:59:39 +0000
commit3989ffc16a40cef40e8b8e0bb0284ebca1f96baf (patch)
tree69431860c5da131b529dfbac6851a9b7aad5fee2 /etc/inttypes.h
parentce793cff0618d39f507b93b315412e2d5a8724e2 (diff)
downloadmpv-3989ffc16a40cef40e8b8e0bb0284ebca1f96baf.tar.bz2
mpv-3989ffc16a40cef40e8b8e0bb0284ebca1f96baf.tar.xz
DOCS/codecs.conf -> etc/codecs.conf
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1615 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'etc/inttypes.h')
-rw-r--r--etc/inttypes.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/etc/inttypes.h b/etc/inttypes.h
new file mode 100644
index 0000000000..b1e93879e4
--- /dev/null
+++ b/etc/inttypes.h
@@ -0,0 +1,13 @@
+
+// fallback if the user doesn't have inttypes.h (libc5 systems)
+
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned long uint32_t;
+typedef unsigned long long uint64_t;
+
+typedef signed char int8_t;
+typedef signed short int16_t;
+typedef signed long int32_t;
+typedef signed long long int64_t;
+