diff options
author | Roland McGrath <roland@gnu.org> | 2006-03-01 05:39:10 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-03-01 05:39:10 +0000 |
commit | 0b890d59bd75cb8ab9232ab72ed8674054e11fa3 (patch) | |
tree | 0b1766c2f2926e2ed362ad997f899fb2c884ec2d | |
parent | e2c7e1de2b8f2539d613b7c7adeb65132bb1f0ce (diff) | |
download | glibc-0b890d59bd75cb8ab9232ab72ed8674054e11fa3.tar glibc-0b890d59bd75cb8ab9232ab72ed8674054e11fa3.tar.gz glibc-0b890d59bd75cb8ab9232ab72ed8674054e11fa3.tar.bz2 glibc-0b890d59bd75cb8ab9232ab72ed8674054e11fa3.zip |
* nscd/nscd_helper.c: Include <time.h> for `time' declaration.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | nscd/nscd_helper.c | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2006-02-28 Roland McGrath <roland@redhat.com> + * nscd/nscd_helper.c: Include <time.h> for `time' declaration. + * include/fcntl.h: Declare __openat, __open64. Use libc_hidden_proto. * io/openat.c (__openat): Define instead of openat. Use libc_hidden_def. Define openat with weak_alias. diff --git a/nscd/nscd_helper.c b/nscd/nscd_helper.c index 827d3a97ab..8025168a5e 100644 --- a/nscd/nscd_helper.c +++ b/nscd/nscd_helper.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2002, 2003, 2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 1998-2002,2003,2004,2005,2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. @@ -21,6 +21,7 @@ #include <errno.h> #include <fcntl.h> #include <stdbool.h> +#include <time.h> #include <unistd.h> #include <sys/mman.h> #include <sys/poll.h> |