0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-03-25 15:42:42 +00:00
MarlinFirmware/Marlin/Gen7/cores/arduino/main.cxx

13 lines
85 B
C++
Raw Normal View History

2012-02-06 14:11:25 +01:00
int main(void)
{
init();
setup();
for (;;)
loop();
return 0;
}