changeset 31338:4f1740bd1cb3

Revert marking mplayer_audio_read() as static; it is used from linked .o files.
author diego
date Mon, 14 Jun 2010 11:27:26 +0000
parents 3fd6746f539c
children 4a3c8f6ab63a
files mp3lib/test.c mp3lib/test2.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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);
 }
--- 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);
 }