I program for a C2000 microcontroller. Every time when I create a structure type including members of IQ data type in the header file, I have to include the "IQmathLib.h", or the compiler would show errors. Is there anyway so that I don't have to write '#include "IQmathLib.h"' in each header file?
#ifndef __TEST_H__
#define __TEST_H__
#include "IQmathLib.h"
typedef struct
{
_iq test1;
_iq test2;
} TEST;
......