aboutsummaryrefslogtreecommitdiff
path: root/src/z_sigbin.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-03-22 20:58:25 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-03-22 20:58:25 +0000
commit2b60d55c919e7588f5aff15936e83c300b3660bb (patch)
tree14d860de7f28083d3756ad91b627de70f26788f6 /src/z_sigbin.c
parentc500bc542cb7cc78d6dac3f7da3bff626056b1aa (diff)
zexy-2.0:
- use of abstractions for objects that allow it - some objects are build both as externals and abstractions (as slower fallbacks) - code-layout is now 1:1 c-file<->object (this should allow for building of zexy as a collection of externals instead as a big library) - matrix-objects have moved to iemmatrix !! svn path=/trunk/externals/zexy/; revision=2641
Diffstat (limited to 'src/z_sigbin.c')
-rw-r--r--src/z_sigbin.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/z_sigbin.c b/src/z_sigbin.c
index b1023e7..dc4932e 100644
--- a/src/z_sigbin.c
+++ b/src/z_sigbin.c
@@ -1,3 +1,19 @@
+/******************************************************
+ *
+ * zexy - implementation file
+ *
+ * copyleft (c) IOhannes m zmölnig
+ *
+ * 1999:forum::für::umläute:2004
+ *
+ * institute of electronic music and acoustics (iem)
+ *
+ ******************************************************
+ *
+ * license: GNU General Public License v.2
+ *
+ ******************************************************/
+
/*
finally :: some of the missing binops for signals :: abs~, sgn~, >~, <~, ==~, &&~, ||~
@@ -9,8 +25,6 @@
#ifdef NT
#define fabsf fabs
-#pragma warning( disable : 4244 )
-#pragma warning( disable : 4305 )
#endif
typedef struct _misc
@@ -798,4 +812,5 @@ void z_sigbin_setup(void)
sigEQUAL_setup();
sigOR_setup();
sigAND_setup();
+ zexy_register("sigbin");
}