add missing isblank() for eCos
git-svn-id: svn://svn.berlios.de/openocd/trunk@2607 b42882b7-edfa-0310-969c-e2dbd0fdcd60__archive__
parent
bf5f21e39a
commit
0ed5f5afd9
|
@ -153,6 +153,8 @@ typedef uint64_t uintmax_t;
|
|||
#define UINT64_MAX (__CONCAT(INT64_MAX, U) * 2ULL + 1ULL)
|
||||
|
||||
|
||||
/* C99, eCos is C90 compliant (with bits of C99) */
|
||||
#define isblank(c) ((c) == ' ' || (c) == '\t')
|
||||
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue