aboutsummaryrefslogtreecommitdiff
path: root/cyclone
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-22 19:55:47 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-22 19:55:47 +0000
commitdf236ed1dea7a18cda0c0ecb93461affd4f817c6 (patch)
tree0bf823e7e61891baefb50ee6fdd9f80213eca613 /cyclone
parentd629edf90155d7e2e43b6a1d370746375f050815 (diff)
convert int typedefs to use C99 stdint.h
svn path=/trunk/externals/miXed/; revision=16966
Diffstat (limited to 'cyclone')
-rw-r--r--cyclone/sickle/cycle.c2
-rw-r--r--cyclone/sickle/rand.c2
-rw-r--r--cyclone/sickle/train.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/cyclone/sickle/cycle.c b/cyclone/sickle/cycle.c
index 8daa43e..b88c13e 100644
--- a/cyclone/sickle/cycle.c
+++ b/cyclone/sickle/cycle.c
@@ -84,7 +84,7 @@ static t_int *cycle_perform(t_int *w)
t_float *addr, f1, f2, frac;
double dphase = x->x_phase + SHARED_UNITBIT32;
double conv = x->x_conv;
- int32 normhipart;
+ int32_t normhipart;
t_shared_wrappy wrappy;
wrappy.w_d = SHARED_UNITBIT32;
diff --git a/cyclone/sickle/rand.c b/cyclone/sickle/rand.c
index 30014a5..c6126d6 100644
--- a/cyclone/sickle/rand.c
+++ b/cyclone/sickle/rand.c
@@ -31,7 +31,7 @@ static t_int *rand_perform(t_int *w)
double ph = x->x_nextphase;
double tfph = ph + SHARED_UNITBIT32;
t_shared_wrappy wrappy;
- int32 normhipart;
+ int32_t normhipart;
float rcpsr = x->x_rcpsr;
float target = x->x_target;
float scaling = x->x_scaling;
diff --git a/cyclone/sickle/train.c b/cyclone/sickle/train.c
index b07ba9a..6454b0a 100644
--- a/cyclone/sickle/train.c
+++ b/cyclone/sickle/train.c
@@ -39,7 +39,7 @@ static t_int *train_perform(t_int *w)
double ph = x->x_phase;
double tfph = ph + SHARED_UNITBIT32;
t_shared_wrappy wrappy;
- int32 normhipart;
+ int32_t normhipart;
int on = x->x_on;
int edge = 0;