diff --git a/src/helper/types.h b/src/helper/types.h index 21ff2be273ae1e8d2b98dd5f62f81c064f7dd0e4..21a6a33763282a428c529d4d6daccd32b05bb76f 100644 --- a/src/helper/types.h +++ b/src/helper/types.h @@ -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