Generally speaking, you want to place the following lines at the beginning of a C program:
#include <avr/io.h> #include <avr/ina90.h>
Also, specify the MCU in a Makefile:
MCU = atmega128
This combination allows gcc automatically include the correct header file for the chosen MCU (so that you don't have to make your program specify to a particular MCU).