Android's bionic libc doesn't define NBBY; this isn't a standard define, and since all modern/sane platforms have 8 bits per byte, use this as a default. Signed-off-by: Theodore Ts'o <tytso@xxxxxxx> --- include/platform_defs.h.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/platform_defs.h.in b/include/platform_defs.h.in index ac260bc..3e059af 100644 --- a/include/platform_defs.h.in +++ b/include/platform_defs.h.in @@ -178,4 +178,8 @@ typedef unsigned short umode_t; #define max(a,b) (((a)>(b))?(a):(b)) #endif +#ifndef NBBY +#define NBBY 8 +#endif + #endif /* __XFS_PLATFORM_DEFS_H__ */ -- 2.3.0 -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html