Fix missing declaration

This commit is contained in:
Andreas Schwab 2011-09-06 11:12:11 +02:00
parent ef60624956
commit a8f84144c9
2 changed files with 6 additions and 0 deletions

View File

@ -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

View File

@ -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)