summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-13 13:47:44 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-13 13:47:44 +0000
commit377dda939f4583ab7ba06475eef047ff8d3401ba (patch)
treefde3867e8b3aa7242fdeddb9ff9477a74a159b97
parentf49369b94d23d237c5f3accd9e30641c9be27636 (diff)
downloadmpv-377dda939f4583ab7ba06475eef047ff8d3401ba.tar.bz2
mpv-377dda939f4583ab7ba06475eef047ff8d3401ba.tar.xz
don't expect win32 bin yet, only wanna have this already in cvs, btw. it has to be copied to main/inttypes.h
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2184 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--TOOLS/cygwin_inttypes.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/TOOLS/cygwin_inttypes.h b/TOOLS/cygwin_inttypes.h
new file mode 100644
index 0000000000..25728c05e4
--- /dev/null
+++ b/TOOLS/cygwin_inttypes.h
@@ -0,0 +1,8 @@
+#ifndef _CYGWIN_INTTYPES_H
+#define _CYGWIN_INTTYPES_H
+#include <sys/types.h>
+typedef u_int8_t uint8_t;
+typedef u_int16_t uint16_t;
+typedef u_int32_t uint32_t;
+typedef u_int64_t uint64_t;
+#endif