add warning fir PRIx32 isn't defined by inttypes.h

This commit is contained in:
matthias.ringwald 2011-11-09 15:52:28 +00:00
parent 4f4fc1df43
commit 5a109138a5

View File

@ -44,6 +44,7 @@
// workaround for missing PRIx32 on mspgcc (16-bit MCU)
#ifndef PRIx32
#warning Using own: #define PRIx32 "lx"
#define PRIx32 "lx"
#endif