From c1419b43ea354fa04360450ae4f64612df065099 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 14 Nov 2005 21:59:09 +0000 Subject: these pragmas are only used for MSVC, not MinGW or Cygwin, therefore changing the define from NT to _MSC_VER svn path=/trunk/externals/ggee/; revision=3903 --- control/sinh.c | 108 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 54 insertions(+), 54 deletions(-) (limited to 'control/sinh.c') diff --git a/control/sinh.c b/control/sinh.c index 609ef3f..915ee5f 100755 --- a/control/sinh.c +++ b/control/sinh.c @@ -1,54 +1,54 @@ -/* (C) Guenter Geiger */ - - -#include -#ifdef NT -#pragma warning( disable : 4244 ) -#pragma warning( disable : 4305 ) -#endif - -#include - - - -/* ------------------------ sinh ----------------------------- */ - -static t_class *sinh_class; - - -typedef struct _sinh -{ - t_object x_obj; -} t_sinh; - - -void sinh_bang(t_sinh *x) -{ - post("bang"); -} - - -void sinh_float(t_sinh *x,t_floatarg f) -{ - - outlet_float(x->x_obj.ob_outlet,sinh(f)); -} - - -static void *sinh_new() -{ - t_sinh *x = (t_sinh *)pd_new(sinh_class); - - outlet_new(&x->x_obj,&s_float); - return (x); -} - -void sinh_setup(void) -{ - sinh_class = class_new(gensym("sinh"), (t_newmethod)sinh_new, 0, - sizeof(t_sinh), 0,0); - class_addbang(sinh_class,sinh_bang); - class_addfloat(sinh_class,sinh_float); -} - - +/* (C) Guenter Geiger */ + + +#include +#ifdef _MSC_VER +#pragma warning( disable : 4244 ) +#pragma warning( disable : 4305 ) +#endif + +#include + + + +/* ------------------------ sinh ----------------------------- */ + +static t_class *sinh_class; + + +typedef struct _sinh +{ + t_object x_obj; +} t_sinh; + + +void sinh_bang(t_sinh *x) +{ + post("bang"); +} + + +void sinh_float(t_sinh *x,t_floatarg f) +{ + + outlet_float(x->x_obj.ob_outlet,sinh(f)); +} + + +static void *sinh_new() +{ + t_sinh *x = (t_sinh *)pd_new(sinh_class); + + outlet_new(&x->x_obj,&s_float); + return (x); +} + +void sinh_setup(void) +{ + sinh_class = class_new(gensym("sinh"), (t_newmethod)sinh_new, 0, + sizeof(t_sinh), 0,0); + class_addbang(sinh_class,sinh_bang); + class_addfloat(sinh_class,sinh_float); +} + + -- cgit v1.2.1