|
Hi,The cross-compiler that I wrote uses C99 standard integer types like "int32_t" and "int16_t". This makes it incompatible with ANSI C. I'm now thinking that I should use #ifdefs to only build the cross- compiler if C99 is available. Can anybody think of a better solution?
Tim Maxwell