aboutsummaryrefslogtreecommitdiff
path: root/control/sinh.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-14 21:59:09 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-14 21:59:09 +0000
commitc1419b43ea354fa04360450ae4f64612df065099 (patch)
tree8c38d7338e9df7e889a18dceeedb3509adbbf423 /control/sinh.c
parent76be9508936fa53fe661d378ee2fc41cc9baebf3 (diff)
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
Diffstat (limited to 'control/sinh.c')
-rwxr-xr-xcontrol/sinh.c108
1 files changed, 54 insertions, 54 deletions
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 <geiger@epy.co.at> */
-
-
-#include <m_pd.h>
-#ifdef NT
-#pragma warning( disable : 4244 )
-#pragma warning( disable : 4305 )
-#endif
-
-#include <math.h>
-
-
-
-/* ------------------------ 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 <geiger@epy.co.at> */
+
+
+#include <m_pd.h>
+#ifdef _MSC_VER
+#pragma warning( disable : 4244 )
+#pragma warning( disable : 4305 )
+#endif
+
+#include <math.h>
+
+
+
+/* ------------------------ 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);
+}
+
+