Index: stat.h =================================================================== --- stat.h (revision 2928) +++ stat.h (working copy) @@ -11,12 +11,19 @@ uid_t st_uid; gid_t st_gid; dev_t st_rdev; - int __st_rdev_padding; + int __st_rdev_padding[2]; off_t st_size; blksize_t st_blksize; + int __st_rdev_padding2[1]; blkcnt_t st_blocks; struct timespec st_atim; struct timespec st_mtim; struct timespec st_ctim; ino_t st_ino; }; + +#ifdef _BSD_SOURCE +#define st_atimespec st_atim +#define st_mtimespec st_mtim +#define st_ctimespec st_ctim +#endif