aboutsummaryrefslogtreecommitdiff
path: root/cmos/cd4094.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/cd4094.c
parenta6465a398ce14179195c55db2e23d7e5e6b14d12 (diff)
Changed t_int to int
svn path=/trunk/externals/mrpeach/; revision=17381
Diffstat (limited to 'cmos/cd4094.c')
-rw-r--r--cmos/cd4094.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/cmos/cd4094.c b/cmos/cd4094.c
index 0d7097a..03d503d 100644
--- a/cmos/cd4094.c
+++ b/cmos/cd4094.c
@@ -15,12 +15,12 @@ typedef struct _cd4094
t_outlet *x_Q8Out;
t_outlet *x_QSOut;
t_outlet *x_QprimeSOut;
- t_int x_clock;
- t_int x_data;
- t_int x_data_in;
- t_int x_strobe;
- t_int x_output_enable;
- t_int x_qprime;
+ int x_clock;
+ int x_data;
+ int x_data_in;
+ int x_strobe;
+ int x_output_enable;
+ int x_qprime;
t_inlet *x_StrobeIn;/* Strobe takes one or zero as acceptable inputs. */
t_inlet *x_DataIn;/* Data takes one or zero as acceptable inputs. */
t_inlet *x_OutputEnable;/* Output Enable takes one or zero as acceptable inputs. */