]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Include sys/param.h in getcwd.c.
authorMike Frysinger <vapier@gentoo.org>
Wed, 15 Feb 2012 20:39:49 +0000 (20:39 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Wed, 15 Feb 2012 20:39:49 +0000 (20:39 +0000)
ChangeLog
sysdeps/unix/sysv/linux/getcwd.c

index a802b93d9219317eb8bbe9cffb097059d918049e..cb00422b5009d546176bfe7e7bdb369ef938cce9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-02-15  Mike Frysinger  <vapier@gentoo.org>
+
+       * sysdeps/unix/sysv/linux/getcwd.c: Include sys/param.h.
+
 2012-02-15  Roland McGrath  <roland@hack.frob.com>
 
        * mach/devstream.c (cookie_io_functions_t): Macro removed.
index 0480a40a7d4ab7fe96905d0ba0fc8ddbf9c0e4e5..6e3c5e06440b485954872ee6cbbccda45d618b42 100644 (file)
@@ -1,6 +1,5 @@
 /* Determine current working directory.  Linux version.
-   Copyright (C) 1997,1998,1999,2000,2002,2003,2006,2011
-       Free Software Foundation, Inc.
+   Copyright (C) 1997-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
 
@@ -23,6 +22,7 @@
 #include <limits.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include <sys/param.h>
 
 #include <sysdep.h>
 #include <sys/syscall.h>