Remove useless extern before function prototypes

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23212 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-05-02 16:17:16 +00:00
parent bc39c06e4c
commit c3e24ef73f
1 changed files with 4 additions and 4 deletions

View File

@ -10,9 +10,9 @@ typedef struct _txSample
char * Image; char * Image;
} txSample; } txSample;
extern int bpRead( char * fname, txSample * bf ); int bpRead( char * fname, txSample * bf );
extern int conv24to32( txSample * bf ); int conv24to32( txSample * bf );
extern void Convert32to1( txSample * in,txSample * out,int adaptivlimit ); void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
extern void Convert1to32( txSample * in,txSample * out ); void Convert1to32( txSample * in,txSample * out );
#endif /* __BITMAP_H */ #endif /* __BITMAP_H */