summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-04 18:55:44 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-04 18:55:44 +0000
commit9ca5decb0b51bedea1de69e088db5631156508fd (patch)
tree9bd26b5c116c355039471edac4f61acb825bd939 /osdep
parentb14bee292837f8da4241ff29ecc3c454c948c0df (diff)
downloadmpv-9ca5decb0b51bedea1de69e088db5631156508fd.tar.bz2
mpv-9ca5decb0b51bedea1de69e088db5631156508fd.tar.xz
Include stdio.h for printf
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22459 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep')
-rw-r--r--osdep/getch2-win.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/osdep/getch2-win.c b/osdep/getch2-win.c
index 80e745f9ef..d0aba80823 100644
--- a/osdep/getch2-win.c
+++ b/osdep/getch2-win.c
@@ -4,9 +4,12 @@
// for additional virtual keycodes
+#include <stdio.h>
#include <windows.h>
#include "keycodes.h"
#include "input/input.h"
+// HACK, stdin is used as something else below
+#undef stdin
int mp_input_win32_slave_cmd_func(int fd,char* dest,int size){
DWORD retval;