diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/pathconf.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index b898890676..2f52037376 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-07-09 Andreas Schwab <schwab@linux-m68k.org> + + * sysdeps/unix/sysv/linux/pathconf.c: Include <string.h>. + 2011-07-20 Ulrich Drepper <drepper@gmail.com> * po/cs.po: Update from translation team. diff --git a/sysdeps/unix/sysv/linux/pathconf.c b/sysdeps/unix/sysv/linux/pathconf.c index 185931404b..ca87bf150c 100644 --- a/sysdeps/unix/sysv/linux/pathconf.c +++ b/sysdeps/unix/sysv/linux/pathconf.c @@ -1,5 +1,6 @@ /* Get file-specific information about a file. Linux version. - Copyright (C) 1991,1995,1996,1998-2003,2008,2010,2011 Free Software Foundation, Inc. + Copyright (C) 1991,1995,1996,1998-2003,2008,2010,2011 + Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -20,6 +21,7 @@ #include <errno.h> #include <mntent.h> #include <stdio_ext.h> +#include <string.h> #include <unistd.h> #include <sys/sysmacros.h> |