# HG changeset patch # User nenolod # Date 1161388845 25200 # Node ID 802c9f8461e0ab1a543cf113180430d467e96d36 # Parent 94795106c5415f11b4c95cccd19fbd6a3a5cd046 [svn] - enforce extern status here. we do not provide an inlined iir(), so that shouldn't be declared inline. diff -r 94795106c541 -r 802c9f8461e0 ChangeLog --- a/ChangeLog Fri Oct 20 16:58:06 2006 -0700 +++ b/ChangeLog Fri Oct 20 17:00:45 2006 -0700 @@ -1,3 +1,12 @@ +2006-10-20 23:58:06 +0000 William Pitcock + revision [2731] + - icc warning fixes (pass 1) + + trunk/audacious/util.c | 10 +++++----- + trunk/audacious/widgets/playlist_list.c | 3 +-- + 2 files changed, 6 insertions(+), 7 deletions(-) + + 2006-10-15 16:58:41 +0000 William Pitcock revision [2729] - try coreaudio before OSS diff -r 94795106c541 -r 802c9f8461e0 audacious/iir.h --- a/audacious/iir.h Fri Oct 20 16:58:06 2006 -0700 +++ b/audacious/iir.h Fri Oct 20 17:00:45 2006 -0700 @@ -51,19 +51,19 @@ /* * Function prototypes */ -void init_iir(); -void clean_history(); -void set_gain(gint index, gint chn, float val); -void set_preamp(gint chn, float val); +extern void init_iir(); +extern void clean_history(); +extern void set_gain(gint index, gint chn, float val); +extern void set_preamp(gint chn, float val); -__inline__ int iir(gpointer * d, gint length, gint nch); +extern int iir(gpointer * d, gint length, gint nch); #ifdef ARCH_X86 -__inline__ int round_trick(float floatvalue_to_round); +extern int round_trick(float floatvalue_to_round); #endif #ifdef ARCH_PPC -__inline__ int round_ppc(float x); +extern int round_ppc(float x); #endif #define EQ_CHANNELS 2