diff options
author | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-01-21 08:11:39 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-01-21 08:11:39 +0100 |
commit | 60cb5bdd30ec3265cbb5c1c667f5c98cbbb84aab (patch) | |
tree | ea34ad6e2f8a5acd386747aba9b4a55bb57ff93f /src/helper | |
parent | dbecb13b240867e12e43dba032a45891000bffe9 (diff) | |
download | openocd_libswd-60cb5bdd30ec3265cbb5c1c667f5c98cbbb84aab.tar.gz openocd_libswd-60cb5bdd30ec3265cbb5c1c667f5c98cbbb84aab.tar.bz2 openocd_libswd-60cb5bdd30ec3265cbb5c1c667f5c98cbbb84aab.tar.xz openocd_libswd-60cb5bdd30ec3265cbb5c1c667f5c98cbbb84aab.zip |
ecos: add missing PRId8 definition
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/helper')
-rw-r--r-- | src/helper/types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/helper/types.h b/src/helper/types.h index 03ab5f0c..1010dcd9 100644 --- a/src/helper/types.h +++ b/src/helper/types.h @@ -172,6 +172,7 @@ static inline void h_u16_to_be(uint8_t* buf, int val) #define SCNx32 "x" #define PRIi32 "i" #define PRIu32 "u" +#define PRId8 PRId32 typedef CYG_ADDRWORD intptr_t; typedef int64_t intmax_t; |