From 3f66990d71544083a5143337f201ef0c0e6b770c Mon Sep 17 00:00:00 2001 From: Martin Peach Date: Mon, 10 Nov 2014 22:31:42 +0000 Subject: Changed t_int to int svn path=/trunk/externals/mrpeach/; revision=17381 --- cmos/cd4001.c | 4 ++-- cmos/cd4002.c | 8 ++++---- cmos/cd4008.c | 18 +++++++++--------- cmos/cd4011.c | 4 ++-- cmos/cd4012.c | 8 ++++---- cmos/cd4013.c | 2 +- cmos/cd4014.c | 24 ++++++++++++------------ cmos/cd4015.c | 8 ++++---- cmos/cd4017.c | 4 ++-- cmos/cd40193.c | 18 +++++++++--------- cmos/cd4023.c | 6 +++--- cmos/cd4024.c | 8 ++++---- cmos/cd4025.c | 6 +++--- cmos/cd4027.c | 2 +- cmos/cd4070.c | 4 ++-- cmos/cd4071.c | 4 ++-- cmos/cd4072.c | 8 ++++---- cmos/cd4073.c | 6 +++--- cmos/cd4075.c | 6 +++--- cmos/cd4076.c | 28 ++++++++++++++-------------- cmos/cd4081.c | 4 ++-- cmos/cd4082.c | 8 ++++---- cmos/cd4094.c | 12 ++++++------ cmos/cd4516.c | 20 ++++++++++---------- 24 files changed, 110 insertions(+), 110 deletions(-) diff --git a/cmos/cd4001.c b/cmos/cd4001.c index 0fbbfb9..0e6b2b9 100644 --- a/cmos/cd4001.c +++ b/cmos/cd4001.c @@ -5,8 +5,8 @@ typedef struct _cd4001 { t_object x_obj; - t_int x_in1; - t_int x_in2; + int x_in1; + int x_in2; t_outlet *x_out; t_inlet *x_inlet2;/* Second inlet is 'live' like the first */ } t_cd4001; diff --git a/cmos/cd4002.c b/cmos/cd4002.c index b55769f..d54404e 100644 --- a/cmos/cd4002.c +++ b/cmos/cd4002.c @@ -5,10 +5,10 @@ typedef struct _cd4002 { t_object x_obj; - t_int x_in1; - t_int x_in2; - t_int x_in3; - t_int x_in4; + int x_in1; + int x_in2; + int x_in3; + int x_in4; t_outlet *x_out; t_inlet *x_inlet2;/* extra inlets are 'live' like the first */ t_inlet *x_inlet3; 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; diff --git a/cmos/cd4011.c b/cmos/cd4011.c index e04ee14..7a00ae5 100644 --- a/cmos/cd4011.c +++ b/cmos/cd4011.c @@ -5,8 +5,8 @@ typedef struct _cd4011 { t_object x_obj; - t_int x_in1; - t_int x_in2; + int x_in1; + int x_in2; t_outlet *x_out; t_inlet *x_inlet2;/* Second inlet is 'live' like the first */ } t_cd4011; diff --git a/cmos/cd4012.c b/cmos/cd4012.c index 752d8c1..1e73483 100644 --- a/cmos/cd4012.c +++ b/cmos/cd4012.c @@ -5,10 +5,10 @@ typedef struct _cd4012 { t_object x_obj; - t_int x_in1; - t_int x_in2; - t_int x_in3; - t_int x_in4; + int x_in1; + int x_in2; + int x_in3; + int x_in4; t_outlet *x_out; t_inlet *x_inlet2;/* extra inlets are 'live' like the first */ t_inlet *x_inlet3; diff --git a/cmos/cd4013.c b/cmos/cd4013.c index c92f635..291d830 100644 --- a/cmos/cd4013.c +++ b/cmos/cd4013.c @@ -5,7 +5,7 @@ typedef struct _cd4013 { t_object x_obj; - t_int x_state;/* set = bit0, clock = bit1, reset = bit2 j = bit3 k = bit4 q = bit 5 */ + int x_state;/* set = bit0, clock = bit1, reset = bit2 j = bit3 k = bit4 q = bit 5 */ t_outlet *x_Q; t_outlet *x_notQ; t_inlet *x_set;/* set takes one or zero as acceptable inputs. */ diff --git a/cmos/cd4014.c b/cmos/cd4014.c index 7485f5f..b9bf26d 100644 --- a/cmos/cd4014.c +++ b/cmos/cd4014.c @@ -5,18 +5,18 @@ typedef struct _cd4014 { t_object x_obj; - t_int x_P1; - t_int x_P2; - t_int x_P3; - t_int x_P4; - t_int x_P5; - t_int x_P6; - t_int x_P7; - t_int x_P8; - t_int x_SerialIn; - t_int x_Clk; - t_int x_Q; - t_int x_ParallelSerial; + int x_P1; + int x_P2; + int x_P3; + int x_P4; + int x_P5; + int x_P6; + int x_P7; + int x_P8; + int x_SerialIn; + int x_Clk; + int x_Q; + int x_ParallelSerial; t_outlet *x_outQ6; t_outlet *x_outQ7; t_outlet *x_outQ8; diff --git a/cmos/cd4015.c b/cmos/cd4015.c index d2f0d68..511ebf9 100644 --- a/cmos/cd4015.c +++ b/cmos/cd4015.c @@ -5,10 +5,10 @@ typedef struct _cd4015 { t_object x_obj; - t_int x_D; - t_int x_R; - t_int x_Clk; - t_int x_Q; + int x_D; + int x_R; + int x_Clk; + int x_Q; t_outlet *x_outQ1; t_outlet *x_outQ2; t_outlet *x_outQ3; diff --git a/cmos/cd4017.c b/cmos/cd4017.c index d5bcc97..59c08ab 100644 --- a/cmos/cd4017.c +++ b/cmos/cd4017.c @@ -5,8 +5,8 @@ typedef struct _cd4017 { t_object x_obj; - t_int x_state;/* clock_inhibit value in bit 0, clock level in bit 1, reset level in bit 2 */ - t_int x_count; + int x_state;/* clock_inhibit value in bit 0, clock level in bit 1, reset level in bit 2 */ + int x_count; t_outlet *x_0; t_outlet *x_1; t_outlet *x_2; diff --git a/cmos/cd40193.c b/cmos/cd40193.c index 22bdcbc..8247f42 100644 --- a/cmos/cd40193.c +++ b/cmos/cd40193.c @@ -11,15 +11,15 @@ typedef struct _cd40193 t_outlet *x_QDOut; t_outlet *x_CarryOut; t_outlet *x_BorrowOut; - t_int x_countUp; - t_int x_countDown; - t_int x_dataA; - t_int x_dataB; - t_int x_dataC; - t_int x_dataD; - t_int x_load; - t_int x_clear; - t_int x_count; + int x_countUp; + int x_countDown; + int x_dataA; + int x_dataB; + int x_dataC; + int x_dataD; + int x_load; + int x_clear; + int x_count; t_inlet *x_CountDownIn;/* All inlets take one or zero as acceptable inputs. */ t_inlet *x_ClearIn; t_inlet *x_LoadIn; diff --git a/cmos/cd4023.c b/cmos/cd4023.c index ff60255..aef6a3d 100644 --- a/cmos/cd4023.c +++ b/cmos/cd4023.c @@ -5,9 +5,9 @@ typedef struct _cd4023 { t_object x_obj; - t_int x_in1; - t_int x_in2; - t_int x_in3; + int x_in1; + int x_in2; + int x_in3; t_outlet *x_out; t_inlet *x_inlet2;/* Second inlet is 'live' like the first */ t_inlet *x_inlet3;/* Third inlet is 'live' like the first */ diff --git a/cmos/cd4024.c b/cmos/cd4024.c index 93c3bf4..bf86dd2 100644 --- a/cmos/cd4024.c +++ b/cmos/cd4024.c @@ -5,10 +5,10 @@ typedef struct _cd4024 { t_object x_obj; - t_int x_reset; - t_int x_clock; - t_int x_count; - t_int x_updating; + int x_reset; + int x_clock; + int x_count; + int x_updating; t_outlet *x_Q1; t_outlet *x_Q2; t_outlet *x_Q3; diff --git a/cmos/cd4025.c b/cmos/cd4025.c index 5124f14..9353e1b 100644 --- a/cmos/cd4025.c +++ b/cmos/cd4025.c @@ -5,9 +5,9 @@ typedef struct _cd4025 { t_object x_obj; - t_int x_in1; - t_int x_in2; - t_int x_in3; + int x_in1; + int x_in2; + int x_in3; t_outlet *x_out; t_inlet *x_inlet2;/* Second inlet is 'live' like the first */ t_inlet *x_inlet3;/* Third inlet is 'live' like the first */ diff --git a/cmos/cd4027.c b/cmos/cd4027.c index 69aaf48..18058a6 100644 --- a/cmos/cd4027.c +++ b/cmos/cd4027.c @@ -5,7 +5,7 @@ typedef struct _cd4027 { t_object x_obj; - t_int x_state;/* set = bit0, clock = bit1, reset = bit2 j = bit3 k = bit4 q = bit 5 */ + int x_state;/* set = bit0, clock = bit1, reset = bit2 j = bit3 k = bit4 q = bit 5 */ t_outlet *x_Q; t_outlet *x_notQ; t_inlet *x_set;/* set takes one or zero as acceptable inputs. */ diff --git a/cmos/cd4070.c b/cmos/cd4070.c index ece39b0..7c92d67 100644 --- a/cmos/cd4070.c +++ b/cmos/cd4070.c @@ -5,8 +5,8 @@ typedef struct _cd4070 { t_object x_obj; - t_int x_in1; - t_int x_in2; + int x_in1; + int x_in2; t_outlet *x_out; t_inlet *x_inlet2;/* Second inlet is 'live' like the first */ } t_cd4070; diff --git a/cmos/cd4071.c b/cmos/cd4071.c index d6f49e7..9cbfef1 100644 --- a/cmos/cd4071.c +++ b/cmos/cd4071.c @@ -5,8 +5,8 @@ typedef struct _cd4071 { t_object x_obj; - t_int x_in1; - t_int x_in2; + int x_in1; + int x_in2; t_outlet *x_out; t_inlet *x_inlet2;/* Second inlet is 'live' like the first */ } t_cd4071; diff --git a/cmos/cd4072.c b/cmos/cd4072.c index 9ce4b80..934138a 100644 --- a/cmos/cd4072.c +++ b/cmos/cd4072.c @@ -5,10 +5,10 @@ typedef struct _cd4072 { t_object x_obj; - t_int x_in1; - t_int x_in2; - t_int x_in3; - t_int x_in4; + int x_in1; + int x_in2; + int x_in3; + int x_in4; t_outlet *x_out; t_inlet *x_inlet2;/* Second inlet is 'live' like the first */ t_inlet *x_inlet3;/* Third inlet is 'live' like the first */ diff --git a/cmos/cd4073.c b/cmos/cd4073.c index 530444b..a8e29c0 100644 --- a/cmos/cd4073.c +++ b/cmos/cd4073.c @@ -5,9 +5,9 @@ typedef struct _cd4073 { t_object x_obj; - t_int x_in1; - t_int x_in2; - t_int x_in3; + int x_in1; + int x_in2; + int x_in3; t_outlet *x_out; t_inlet *x_inlet2;/* Second inlet is 'live' like the first */ t_inlet *x_inlet3;/* Third inlet is 'live' like the first */ diff --git a/cmos/cd4075.c b/cmos/cd4075.c index 6274f9c..47bc3f2 100644 --- a/cmos/cd4075.c +++ b/cmos/cd4075.c @@ -5,9 +5,9 @@ typedef struct _cd4075 { t_object x_obj; - t_int x_in1; - t_int x_in2; - t_int x_in3; + int x_in1; + int x_in2; + int x_in3; t_outlet *x_out; t_inlet *x_inlet2;/* Second inlet is 'live' like the first */ t_inlet *x_inlet3;/* Third inlet is 'live' like the first */ diff --git a/cmos/cd4076.c b/cmos/cd4076.c index 5edcefc..0de9517 100644 --- a/cmos/cd4076.c +++ b/cmos/cd4076.c @@ -9,20 +9,20 @@ typedef struct _cd4076 t_outlet *x_output_B; t_outlet *x_output_C; t_outlet *x_output_D; - t_int x_clock; - t_int x_QA; - t_int x_QB; - t_int x_QC; - t_int x_QD; - t_int x_inA; - t_int x_inB; - t_int x_inC; - t_int x_inD; - t_int x_InDis1; - t_int x_InDis2; - t_int x_OutDis1; - t_int x_OutDis2; - t_int x_Clear; + int x_clock; + int x_QA; + int x_QB; + int x_QC; + int x_QD; + int x_inA; + int x_inB; + int x_inC; + int x_inD; + int x_InDis1; + int x_InDis2; + int x_OutDis1; + int x_OutDis2; + int x_Clear; t_inlet *x_clear;/* clear takes one or zero as acceptable inputs. */ t_inlet *x_input_disable_1;/* input_disable_1 takes one or zero as acceptable inputs. */ t_inlet *x_input_disable_2;/* input_disable_2 takes one or zero as acceptable inputs. */ diff --git a/cmos/cd4081.c b/cmos/cd4081.c index 0770bcc..a7bf4e1 100644 --- a/cmos/cd4081.c +++ b/cmos/cd4081.c @@ -5,8 +5,8 @@ typedef struct _cd4081 { t_object x_obj; - t_int x_in1; - t_int x_in2; + int x_in1; + int x_in2; t_outlet *x_out; t_inlet *x_inlet2;/* Second inlet is 'live' like the first */ } t_cd4081; diff --git a/cmos/cd4082.c b/cmos/cd4082.c index 1ee6f91..89d1551 100644 --- a/cmos/cd4082.c +++ b/cmos/cd4082.c @@ -5,10 +5,10 @@ typedef struct _cd4082 { t_object x_obj; - t_int x_in1; - t_int x_in2; - t_int x_in3; - t_int x_in4; + int x_in1; + int x_in2; + int x_in3; + int x_in4; t_outlet *x_out; t_inlet *x_inlet2;/* Second inlet is 'live' like the first */ t_inlet *x_inlet3;/* Third inlet is 'live' like the first */ 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. */ diff --git a/cmos/cd4516.c b/cmos/cd4516.c index 2949dcf..7f6b091 100644 --- a/cmos/cd4516.c +++ b/cmos/cd4516.c @@ -10,16 +10,16 @@ typedef struct _cd4516 t_outlet *x_Q3Out; t_outlet *x_Q4Out; t_outlet *x_CarryOut; - t_int x_clock; - t_int x_upDown; - t_int x_preset_enable; - t_int x_carry; - t_int x_P1; - t_int x_P2; - t_int x_P3; - t_int x_P4; - t_int x_reset; - t_int x_count; + int x_clock; + int x_upDown; + int x_preset_enable; + int x_carry; + int x_P1; + int x_P2; + int x_P3; + int x_P4; + int x_reset; + int x_count; t_inlet *x_UpDownIn;/* All inlets take one or zero as acceptable inputs. */ t_inlet *x_ResetIn; t_inlet *x_PresetEnableIn; -- cgit v1.2.1