changeset 1888:802c9f8461e0 trunk

[svn] - enforce extern status here. we do not provide an inlined iir(), so that shouldn't be declared inline.
author nenolod
date Fri, 20 Oct 2006 17:00:45 -0700
parents 94795106c541
children 597bd579d9af
files ChangeLog audacious/iir.h
diffstat 2 files changed, 16 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- 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 <nenolod@nenolod.net>
+  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 <nenolod@nenolod.net>
   revision [2729]
   - try coreaudio before OSS
--- 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