about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2014-07-02 11:10:08 -0700
committerRoland McGrath <roland@hack.frob.com>2014-07-02 11:10:08 -0700
commitfe5f34e47092e4a3ebb41fae4aaf382c53aaaaea (patch)
treeeb4e2f6ea30bf3fff3a6b36f2c246eb806f30ade
parentd4eb8195e58b26510acf0676df5a99d07d6193b4 (diff)
downloadglibc-fe5f34e47092e4a3ebb41fae4aaf382c53aaaaea.tar.gz
glibc-fe5f34e47092e4a3ebb41fae4aaf382c53aaaaea.tar.xz
glibc-fe5f34e47092e4a3ebb41fae4aaf382c53aaaaea.zip
Add missing #include for MIN use in dl-sysdep.c.
-rw-r--r--ChangeLog4
-rw-r--r--sysdeps/unix/sysv/linux/dl-sysdep.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0bc442f065..a8f7a8516a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-07-02  Roland McGrath  <roland@hack.frob.com>
+
+	* sysdeps/unix/sysv/linux/dl-sysdep.c: Include <sys/param.h>.
+
 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
 	* intl/loadmsgcat.c: Remove declaration of
diff --git a/sysdeps/unix/sysv/linux/dl-sysdep.c b/sysdeps/unix/sysv/linux/dl-sysdep.c
index 27b09ddc65..f86879e6a2 100644
--- a/sysdeps/unix/sysv/linux/dl-sysdep.c
+++ b/sysdeps/unix/sysv/linux/dl-sysdep.c
@@ -22,6 +22,7 @@
 #include <string.h>
 #include <fcntl.h>
 #include <unistd.h>
+#include <sys/param.h>
 #include <sys/utsname.h>
 #include <ldsodefs.h>