# HG changeset patch # User diego # Date 1276514846 0 # Node ID 4f1740bd1cb31699d665ebe6a2534c8f87db3349 # Parent 3fd6746f539c5bb991f2d661c66d59a79abba075 Revert marking mplayer_audio_read() as static; it is used from linked .o files. diff -r 3fd6746f539c -r 4f1740bd1cb3 mp3lib/test.c --- a/mp3lib/test.c Mon Jun 14 11:25:39 2010 +0000 +++ b/mp3lib/test.c Mon Jun 14 11:27:26 2010 +0000 @@ -39,7 +39,7 @@ static FILE* mp3file=NULL; -static int mplayer_audio_read(char *buf, int size) +int mplayer_audio_read(char *buf, int size) { return fread(buf,1,size,mp3file); } diff -r 3fd6746f539c -r 4f1740bd1cb3 mp3lib/test2.c --- a/mp3lib/test2.c Mon Jun 14 11:25:39 2010 +0000 +++ b/mp3lib/test2.c Mon Jun 14 11:27:26 2010 +0000 @@ -31,7 +31,7 @@ static FILE* mp3file=NULL; -static int mplayer_audio_read(char *buf, int size) +int mplayer_audio_read(char *buf, int size) { return fread(buf,1,size,mp3file); }