#ifndef WiringPrivate_h #define WiringPrivate_h #include #include #include "wiring.h" #ifndef cbi #define cbi(sfr, bit) ((sfr) &= ~_BV(bit)) #endif #ifndef sbi #define sbi(sfr, bit) ((sfr) |= _BV(bit)) #endif typedef void (*voidFuncPtr)(void); #endif