Fix missing include

This commit is contained in:
Andreas Schwab 2011-07-20 14:12:57 -04:00 committed by Ulrich Drepper
parent 702e64bbd5
commit bfc9dc9bcf
2 changed files with 7 additions and 1 deletions

View File

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

View File

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