uint8

Compile time checking existance of stdint.h

I'm working with legacy embedded C code which defines the types uint8_t, uint16_t and uint32_t in a header file using the typedef keyword. For discussion, let us say the file typedefs.h contains these definitions. In my new C source module, I include stdint.h. I also include other header files which include typedefs.h somewhere in t...