From 87dc83f38bb6c32660c7706887996d16512808a7 Mon Sep 17 00:00:00 2001 From: dim Date: Fri, 26 May 2017 16:29:55 +0000 Subject: [PATCH] Define a new __INO64 macro in , to indicate the system uses 64-bit inode numbers. Programs can use this to avoid including , with its associated namespace pollution. Reviewed by: kib --- sys/sys/_types.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sys/sys/_types.h b/sys/sys/_types.h index 1dd7c7df4cf7..3c12fb905622 100644 --- a/sys/sys/_types.h +++ b/sys/sys/_types.h @@ -120,4 +120,11 @@ typedef union { typedef __uintmax_t __rman_res_t; +/* + * When the following macro is defined, the system uses 64-bit inode numbers. + * Programs can use this to avoid including , with its associated + * namespace pollution. + */ +#define __INO64 + #endif /* !_SYS__TYPES_H_ */