#include struct MockSerial { void begin(int x) { //Do nothing (at least for now) } void println(int x) { printf("%d\n", x); } } Serial; void setup(); int main() { setup(); }