Index: mp_msg.h =================================================================== --- mp_msg.h (revision 26113) +++ mp_msg.h (working copy) @@ -111,12 +111,6 @@ #include "config.h" -#ifdef __OS2__ -// va_start/vsnprintf seems to be broken under OS2 :( -#define mp_msg(mod,lev, fmt, args... ) do{if((lev)<=mp_msg_levels[mod]) printf( fmt, ## args );}while(0) -#define mp_dbg(mod,lev, args... ) -#else - #ifdef __GNUC__ void mp_msg(int mod, int lev, const char *format, ... ) __attribute__ ((format (printf, 3, 4))); # ifdef MP_DEBUG @@ -135,6 +129,4 @@ const char* filename_recode(const char* filename); -#endif /* __OS2__ */ - #endif /* MPLAYER_MP_MSG_H */