diff options
author | Damien Miller <djm@mindrot.org> | 2017-06-10 23:41:25 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2017-06-10 23:41:25 +1000 |
commit | bcd1485075aa72ba9418003f5cc27af2b049c51b (patch) | |
tree | 122b7024821c2c47b6df71639fe578bf5f571183 /includes.h | |
parent | 072e172f1d302d2a2c6043ecbfb4004406717b96 (diff) |
portability for sftp globbed ls sort by mtime
Include replacement timespeccmp() for systems that lack it.
Support time_t struct stat->st_mtime in addition to
timespec stat->st_mtim, as well as unsorted fallback.
Diffstat (limited to 'includes.h')
-rw-r--r-- | includes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes.h b/includes.h index 497a038b2..0fd71792e 100644 --- a/includes.h +++ b/includes.h | |||
@@ -93,6 +93,9 @@ | |||
93 | #ifdef HAVE_SYS_SYSMACROS_H | 93 | #ifdef HAVE_SYS_SYSMACROS_H |
94 | # include <sys/sysmacros.h> /* For MIN, MAX, etc */ | 94 | # include <sys/sysmacros.h> /* For MIN, MAX, etc */ |
95 | #endif | 95 | #endif |
96 | #ifdef HAVE_SYS_TIME_H | ||
97 | # include <sys/time.h> /* for timespeccmp if present */ | ||
98 | #endif | ||
96 | #ifdef HAVE_SYS_MMAN_H | 99 | #ifdef HAVE_SYS_MMAN_H |
97 | #include <sys/mman.h> /* for MAP_ANONYMOUS */ | 100 | #include <sys/mman.h> /* for MAP_ANONYMOUS */ |
98 | #endif | 101 | #endif |