From df236ed1dea7a18cda0c0ecb93461affd4f817c6 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 22 Jan 2013 19:55:47 +0000 Subject: convert int typedefs to use C99 stdint.h svn path=/trunk/externals/miXed/; revision=16966 --- cyclone/sickle/cycle.c | 2 +- cyclone/sickle/rand.c | 2 +- cyclone/sickle/train.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'cyclone') 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; -- cgit v1.2.1