1 /* Versions of the 'struct stat' data structure used in compatibility xstat 2 functions. */ 3 #define _STAT_VER_LINUX_OLD 1 4 #define _STAT_VER_KERNEL 1 5 #define _STAT_VER_SVR4 2 6 #define _STAT_VER_LINUX 3 7 #if __WORDSIZE == 32 8 # define _STAT_VER _STAT_VER_LINUX 9 #else 10 # define _STAT_VER _STAT_VER_KERNEL 11 #endif 12 13 /* Versions of the 'xmknod' interface used in compatibility xmknod 14 functions. */ 15 #define _MKNOD_VER_LINUX 1 16 #define _MKNOD_VER_SVR4 2 17 #define _MKNOD_VER _MKNOD_VER_LINUX 18