summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-02 16:17:16 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-02 16:17:16 +0000
commitc3e24ef73ffc11381d37a3e170b4f6ce30950d36 (patch)
treefe8db02739808b676682d813ba057238a4e6d7df /gui
parentbc39c06e4caa69e4390cd6c18f68aae971f926ec (diff)
downloadmpv-c3e24ef73ffc11381d37a3e170b4f6ce30950d36.tar.bz2
mpv-c3e24ef73ffc11381d37a3e170b4f6ce30950d36.tar.xz
Remove useless extern before function prototypes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23212 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'gui')
-rw-r--r--gui/bitmap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/bitmap.h b/gui/bitmap.h
index 5b4075a7e7..28b98ef9f9 100644
--- a/gui/bitmap.h
+++ b/gui/bitmap.h
@@ -10,9 +10,9 @@ typedef struct _txSample
char * Image;
} txSample;
-extern int bpRead( char * fname, txSample * bf );
-extern int conv24to32( txSample * bf );
-extern void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
-extern void Convert1to32( txSample * in,txSample * out );
+int bpRead( char * fname, txSample * bf );
+int conv24to32( txSample * bf );
+void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
+void Convert1to32( txSample * in,txSample * out );
#endif /* __BITMAP_H */