diff options
author | Jim Meyering <jim@meyering.net> | 1998-08-30 03:21:02 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-08-30 03:21:02 +0000 |
commit | 9a27c21fbff942b166db7b960ba6ff80bbcfcc5c (patch) | |
tree | 9f02e96a514127aae55b03db55c8f6d8db33db7d | |
parent | 1fff9783925d84d68f3aa2d3dd37016f06c4a9c8 (diff) | |
download | coreutils-9a27c21fbff942b166db7b960ba6ff80bbcfcc5c.tar.gz coreutils-9a27c21fbff942b166db7b960ba6ff80bbcfcc5c.tar.bz2 coreutils-9a27c21fbff942b166db7b960ba6ff80bbcfcc5c.zip |
(ST_TIME_CMP_NS, ATIME_CMP, CTIME_CMP, MTIME_CMP): Use new ST_MTIM_NSEC macro.
-rw-r--r-- | src/system.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/system.h b/src/system.h index 9e196748f..501592228 100644 --- a/src/system.h +++ b/src/system.h @@ -81,16 +81,16 @@ # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH) #endif -#ifdef HAVE_ST_MTIM +#ifdef ST_MTIM_NSEC # define ST_TIME_CMP_NS(a, b, ns) ((a).ns < (b).ns ? -1 : (a).ns > (b).ns) #else # define ST_TIME_CMP_NS(a, b, ns) 0 #endif #define ST_TIME_CMP(a, b, s, ns) \ ((a).s < (b).s ? -1 : (a).s > (b).s ? 1 : ST_TIME_CMP_NS(a, b, ns)) -#define ATIME_CMP(a, b) ST_TIME_CMP (a, b, st_atime, st_atim.tv_nsec) -#define CTIME_CMP(a, b) ST_TIME_CMP (a, b, st_ctime, st_ctim.tv_nsec) -#define MTIME_CMP(a, b) ST_TIME_CMP (a, b, st_mtime, st_mtim.tv_nsec) +#define ATIME_CMP(a, b) ST_TIME_CMP (a, b, st_atime, st_atim.ST_MTIM_NSEC) +#define CTIME_CMP(a, b) ST_TIME_CMP (a, b, st_ctime, st_ctim.ST_MTIM_NSEC) +#define MTIME_CMP(a, b) ST_TIME_CMP (a, b, st_mtime, st_mtim.ST_MTIM_NSEC) #if !defined(HAVE_MKFIFO) # define mkfifo(path, mode) (mknod ((path), (mode) | S_IFIFO, 0)) |