Fix warnings:

In file included from mplayer.c:191:
mp_fifo.h:5: warning: redundant redeclaration of 'mplayer_put_key'
mp_core.h:129: warning: previous declaration of 'mplayer_put_key' was here
In file included from command.c:59:
mp_fifo.h:5: warning: redundant redeclaration of 'mplayer_put_key'
mp_core.h:129: warning: previous declaration of 'mplayer_put_key' was here


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24182 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-08-25 16:03:02 +00:00
parent aaf54a6f04
commit 11dbdc22db
2 changed files with 1 additions and 1 deletions

View File

@ -55,6 +55,7 @@
#endif
#include "mp_core.h"
#include "mp_fifo.h"
#define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5))

View File

@ -127,5 +127,4 @@ void exit_player_with_rc(const char* how, int rc);
char *get_path(const char *filename);
void rm_osd_msg(int id);
void add_subtitles(char *filename, float fps, int silent);
void mplayer_put_key(int code);
int reinit_video_chain(void);