From dc2fd29b378aae1597fdc1954da0e01f75816bd4 Mon Sep 17 00:00:00 2001 From: musil Date: Tue, 7 Nov 2006 17:11:40 +0000 Subject: makefile_win makefile_linux update we dont need #if MSW_VER chanched float to t_float svn path=/trunk/externals/iemlib/; revision=6221 --- src/iemlib2/iem_prepend.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'src/iemlib2/iem_prepend.c') diff --git a/src/iemlib2/iem_prepend.c b/src/iemlib2/iem_prepend.c index f2810a2..ebea499 100644 --- a/src/iemlib2/iem_prepend.c +++ b/src/iemlib2/iem_prepend.c @@ -3,16 +3,10 @@ iemlib2 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2005 */ -#ifdef _MSC_VER -#pragma warning( disable : 4244 ) -#pragma warning( disable : 4305 ) -#endif #include "m_pd.h" #include "iemlib.h" -#include -#include -#include + /* ----------------------- iem_prepend --------------------------- */ /* -- concatenates message from cold (right) inlet with message -- */ @@ -51,7 +45,7 @@ static void iem_prepend_bang(t_iem_prepend *x) outlet_anything(x->x_obj.ob_outlet, x->x_selector_sym, x->x_ac, x->x_at); } -static void iem_prepend_float(t_iem_prepend *x, t_float f) +static void iem_prepend_float(t_iem_prepend *x, t_floatarg f) { if(x->x_selector_sym == &s_bang) outlet_float(x->x_obj.ob_outlet, f); @@ -127,7 +121,7 @@ static void iem_prepend_proxy_bang(t_iem_prepend_proxy *p) x->x_selector_sym = &s_bang; } -static void iem_prepend_proxy_float(t_iem_prepend_proxy *p, t_float f) +static void iem_prepend_proxy_float(t_iem_prepend_proxy *p, t_floatarg f) { t_iem_prepend *x = p->p_owner; -- cgit v1.2.1