about summary refs log tree commit diff
path: root/sysdeps/unix
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2011-07-20 14:12:57 -0400
committerUlrich Drepper <drepper@gmail.com>2011-07-20 14:12:57 -0400
commitbfc9dc9bcfab65903defcd8a3f4d91f16e7e582d (patch)
treeff2734fa4a7859f3f11f36c58f5c303cfec1ef04 /sysdeps/unix
parent702e64bbd504703d03e4009d6a3102d20965d754 (diff)
downloadglibc-bfc9dc9bcfab65903defcd8a3f4d91f16e7e582d.tar.gz
glibc-bfc9dc9bcfab65903defcd8a3f4d91f16e7e582d.tar.xz
glibc-bfc9dc9bcfab65903defcd8a3f4d91f16e7e582d.zip
Fix missing include
Diffstat (limited to 'sysdeps/unix')
-rw-r--r--sysdeps/unix/sysv/linux/pathconf.c4
1 files changed, 3 insertions, 1 deletions
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>