diff options
author | Roland McGrath <roland@hack.frob.com> | 2015-02-06 12:23:35 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2015-02-06 12:23:35 -0800 |
commit | 56606ab3b8d5b097b7c4f09b52b79a2217768ca4 (patch) | |
tree | 770c823af26558e0fbde04f1a03023e89ffa8c56 /dirent | |
parent | ebf7d6eedb1969b03187398fe730cc03bdd9aae3 (diff) | |
download | glibc-56606ab3b8d5b097b7c4f09b52b79a2217768ca4.zip glibc-56606ab3b8d5b097b7c4f09b52b79a2217768ca4.tar.gz glibc-56606ab3b8d5b097b7c4f09b52b79a2217768ca4.tar.bz2 |
Fix dirent/tst-fdopendir not to presume O_NOATIME exists.
Diffstat (limited to 'dirent')
-rw-r--r-- | dirent/tst-fdopendir.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dirent/tst-fdopendir.c b/dirent/tst-fdopendir.c index 3cf315d..0780c19 100644 --- a/dirent/tst-fdopendir.c +++ b/dirent/tst-fdopendir.c @@ -6,6 +6,9 @@ #include <stdbool.h> #include <string.h> +#ifndef O_NOATIME +# define O_NOATIME 0 +#endif static int do_test (void) |