diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/x86_64/gettimeofday.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2011-09-06 Andreas Schwab <schwab@redhat.com> + + * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Include + <errno.h>. + 2011-09-06 Ulrich Drepper <drepper@gmail.com> * sysdeps/unix/sysv/linux/kernel-features.h: Add entry for getcpu diff --git a/sysdeps/unix/sysv/linux/x86_64/gettimeofday.c b/sysdeps/unix/sysv/linux/x86_64/gettimeofday.c index 56171bcfca..3aba81ceb1 100644 --- a/sysdeps/unix/sysv/linux/x86_64/gettimeofday.c +++ b/sysdeps/unix/sysv/linux/x86_64/gettimeofday.c @@ -38,6 +38,7 @@ __asm (".type __gettimeofday, %gnu_indirect_function"); #else # include <sys/time.h> # include <sysdep.h> +# include <errno.h> int __gettimeofday (struct timeval *tv, struct timezone *tz) |