aboutsummaryrefslogtreecommitdiff
path: root/src/iemlib2/bpe.c
diff options
context:
space:
mode:
authormusil <tmusil@users.sourceforge.net>2006-11-07 17:11:40 +0000
committermusil <tmusil@users.sourceforge.net>2006-11-07 17:11:40 +0000
commitdc2fd29b378aae1597fdc1954da0e01f75816bd4 (patch)
treeadfb76ff53fe1f6f749ff2bf14f4e4b4a90cd36e /src/iemlib2/bpe.c
parent31b7b9b1885e9ecd9f47602c1b571df34e18622b (diff)
makefile_win makefile_linux update
we dont need #if MSW_VER chanched float to t_float svn path=/trunk/externals/iemlib/; revision=6221
Diffstat (limited to 'src/iemlib2/bpe.c')
-rw-r--r--src/iemlib2/bpe.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/iemlib2/bpe.c b/src/iemlib2/bpe.c
index bc31ef8..56f1af0 100644
--- a/src/iemlib2/bpe.c
+++ b/src/iemlib2/bpe.c
@@ -5,10 +5,7 @@ iemlib2 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2005
#include "m_pd.h"
#include "iemlib.h"
-#include <stdlib.h>
-#include <string.h>
-#include <stdio.h>
-#include <math.h>
+
/* --------------------------- bpe -------------------------------- */
/* -- break-point-envelope, convert a list of value-time-doubles -- */
@@ -37,7 +34,7 @@ static void bpe_stop(t_bpe *x)
static void bpe_tick(t_bpe *x)
{
t_atom *vec = x->x_beg;
- float val, time;
+ t_float val, time;
if(x->x_curindex >= x->x_curnum)
{
@@ -59,7 +56,7 @@ static void bpe_tick(t_bpe *x)
static void bpe_bang(t_bpe *x)
{
t_atom *vec = x->x_beg;
- float val, time;
+ t_float val, time;
if(x->x_curnum)
{