diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-05-10 22:58:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-05-10 22:58:45 +0000 |
commit | f9bf102dd663c2e498e7755bb4bd35d79c8dc37b (patch) | |
tree | dc349b8da85f09a2251cd1492ce8cba4e7a9374c | |
parent | c27d2078135ca3df129850f87598660252d6906a (diff) | |
download | glibc-f9bf102dd663c2e498e7755bb4bd35d79c8dc37b.tar.gz |
* io/sys/stat.h: Make sure struct timespec is defined for
__USE_ATFILE.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | io/sys/stat.h | 5 |
2 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,8 @@ 2007-05-10 Ulrich Drepper <drepper@redhat.com> + * io/sys/stat.h: Make sure struct timespec is defined for + __USE_ATFILE. + * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Define UTIME_NOW and UTIME_OMIT. * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Likewise. diff --git a/io/sys/stat.h b/io/sys/stat.h index 2ffa4fc669..e90eafd3ac 100644 --- a/io/sys/stat.h +++ b/io/sys/stat.h @@ -28,11 +28,12 @@ #include <bits/types.h> /* For __mode_t and __dev_t. */ -#if defined __USE_XOPEN || defined __USE_XOPEN2K || defined __USE_MISC +#if defined __USE_XOPEN || defined __USE_XOPEN2K || defined __USE_MISC \ + || __USE_ATFILE # if defined __USE_XOPEN || defined __USE_XOPEN2K # define __need_time_t # endif -# ifdef __USE_MISC +# if defined __USE_MISC || defined __USE_ATFILE # define __need_timespec # endif # include <time.h> /* For time_t resp. timespec. */ |