# HG changeset patch # User reimar # Date 1178122636 0 # Node ID 41bbba7c3850a1baa75f8ed225088f889cc95639 # Parent 7857af1ca50bd73b259c53f46741a88da107f954 Remove useless extern before function prototypes diff -r 7857af1ca50b -r 41bbba7c3850 gui/bitmap.h --- a/gui/bitmap.h Wed May 02 14:39:55 2007 +0000 +++ b/gui/bitmap.h Wed May 02 16:17:16 2007 +0000 @@ -10,9 +10,9 @@ 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 */