0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-08 02:32:30 +00:00
MarlinFirmware/Marlin/Gen7/cores/arduino/main.cxx

13 lines
85 B
C++
Raw Normal View History

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