Is there any c macro predefined if compiler option -mint8
is in use?
Background:
I can compile something for avr with the -mint8 compiler option which results in smaller code size. That violates against the c standard, but this is not the problem here.
I simply want to
#ifdef MINT8 // search the name for the macro here
...
#endif