# HG changeset patch # User reimar # Date 1173034544 0 # Node ID 6f183c95aafc7a5f1222e61dd7c4d5064d9498d6 # Parent ee6b8e74d72703128951e5c28c214f3c280f4d61 Include stdio.h for printf diff -r ee6b8e74d727 -r 6f183c95aafc osdep/getch2-win.c --- a/osdep/getch2-win.c Sun Mar 04 16:23:18 2007 +0000 +++ b/osdep/getch2-win.c Sun Mar 04 18:55:44 2007 +0000 @@ -4,9 +4,12 @@ // for additional virtual keycodes +#include #include #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;