diff options
| -rw-r--r-- | sys/sys/_types.h | 7 | 
1 files changed, 7 insertions, 0 deletions
| 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 <sys/param.h>, with its associated + * namespace pollution. + */ +#define	__INO64 +  #endif /* !_SYS__TYPES_H_ */ | 
