aboutsummaryrefslogtreecommitdiff
path: root/osc
diff options
context:
space:
mode:
authorMartin Peach <mrpeach@users.sourceforge.net>2010-06-14 19:17:56 +0000
committerMartin Peach <mrpeach@users.sourceforge.net>2010-06-14 19:17:56 +0000
commit6bcba6407f293927114bd14412d13307d8bc2248 (patch)
treef62d0a9713e5052163f309b1cf80ae9662894300 /osc
parent79d75b98ac263430ef0043ee823a9c1f83863c2e (diff)
removed ifdef for useless D_HAVECONFIG
svn path=/trunk/externals/mrpeach/; revision=13655
Diffstat (limited to 'osc')
-rw-r--r--osc/unpackOSC.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/osc/unpackOSC.c b/osc/unpackOSC.c
index 407cf6f..1e83a66 100644
--- a/osc/unpackOSC.c
+++ b/osc/unpackOSC.c
@@ -65,10 +65,6 @@ The OSC webpage is http://cnmat.cnmat.berkeley.edu/OpenSoundControl
*/
-#if HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "m_pd.h"
#include <stdio.h>
@@ -161,7 +157,7 @@ void unpackOSC_setup(void)
(t_newmethod)unpackOSC_new, (t_method)unpackOSC_free,
sizeof(t_unpackOSC), 0, 0);
class_addlist(unpackOSC_class, (t_method)unpackOSC_list);
- class_sethelpsymbol(unpackOSC_class, gensym("routeOSC")); /* same help patch as routeOSC*/
+ class_sethelpsymbol(unpackOSC_class, gensym("routeOSC")); /* same help patch as routeOSC*/
}
/* unpackOSC_list expects an OSC packet in the form of a list of floats on [0..255] */