diff options
Diffstat (limited to 'cores/arduino/wiring.h')
-rwxr-xr-x | cores/arduino/wiring.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cores/arduino/wiring.h b/cores/arduino/wiring.h index e29959b..027a8d1 100755 --- a/cores/arduino/wiring.h +++ b/cores/arduino/wiring.h @@ -96,7 +96,6 @@ extern "C"{ #define bitClear(value, bit) ((value) &= ~(1UL << (bit))) #define bitWrite(value, bit, bitvalue) (bitvalue ? bitSet(value, bit) : bitClear(value, bit)) - typedef unsigned int word; #define bit(b) (1UL << (b)) |