//Include the default AVR io-header
//This file(avr/io.) holds all of the informations about the mcu's ports, setup-registers and so on
#include <avr/io.h>
//The normal main-routine
int main(void) {
//Our main-loop
for(;;) {
//Do nothing
}
//The compiler requires us to retunr something, even though we never get here...
return 0;
}