aboutsummaryrefslogtreecommitdiff
path: root/cmos/cd4008.c
diff options
context:
space:
mode:
authorMartin Peach <mrpeach@users.sourceforge.net>2014-11-10 22:31:42 +0000
committerMartin Peach <mrpeach@users.sourceforge.net>2014-11-10 22:31:42 +0000
commit3f66990d71544083a5143337f201ef0c0e6b770c (patch)
treeb4eb68415b11ea0024223f871ca1aeb1d45e2eee /cmos/cd4008.c
parenta6465a398ce14179195c55db2e23d7e5e6b14d12 (diff)
Changed t_int to int
svn path=/trunk/externals/mrpeach/; revision=17381
Diffstat (limited to 'cmos/cd4008.c')
-rw-r--r--cmos/cd4008.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/cmos/cd4008.c b/cmos/cd4008.c
index 06fbe47..1910025 100644
--- a/cmos/cd4008.c
+++ b/cmos/cd4008.c
@@ -5,15 +5,15 @@
typedef struct _cd4008
{
t_object x_obj;
- t_int x_A1;
- t_int x_A2;
- t_int x_A3;
- t_int x_A4;
- t_int x_B1;
- t_int x_B2;
- t_int x_B3;
- t_int x_B4;
- t_int x_CarryIn;
+ int x_A1;
+ int x_A2;
+ int x_A3;
+ int x_A4;
+ int x_B1;
+ int x_B2;
+ int x_B3;
+ int x_B4;
+ int x_CarryIn;
t_outlet *x_outS1;
t_outlet *x_outS2;
t_outlet *x_outS3;