From ca06321df0d5327f30b7ef7065278974dd89c6d8 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 1 Jul 2014 15:01:24 -0700 Subject: [PATCH] Add missing #include for MIN/MAX users. --- ChangeLog | 7 +++++++ nptl/pthread_mutex_lock.c | 1 + nptl/pthread_mutex_timedlock.c | 1 + nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c | 1 + sysdeps/unix/sysv/linux/sysconf.c | 1 + 5 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index a079a18..e081609 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2014-07-01 Roland McGrath + + * sysdeps/unix/sysv/linux/sysconf.c: Include . + * nptl/pthread_mutex_lock.c: Likewise. + * nptl/pthread_mutex_timedlock.c: Likewise. + * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Likewise. + 2014-07-01 Richard henderson * sysdeps/alpha/fpu/bits/mathinline.h (__isnanf): Remove. diff --git a/nptl/pthread_mutex_lock.c b/nptl/pthread_mutex_lock.c index 2c31777..d94f4c9 100644 --- a/nptl/pthread_mutex_lock.c +++ b/nptl/pthread_mutex_lock.c @@ -20,6 +20,7 @@ #include #include #include +#include #include #include "pthreadP.h" #include diff --git a/nptl/pthread_mutex_timedlock.c b/nptl/pthread_mutex_timedlock.c index 0361923..57644c3 100644 --- a/nptl/pthread_mutex_timedlock.c +++ b/nptl/pthread_mutex_timedlock.c @@ -19,6 +19,7 @@ #include #include #include +#include #include "pthreadP.h" #include #include diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c b/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c index b15c835..c80fef4 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c @@ -22,6 +22,7 @@ #include #include #include +#include #include diff --git a/sysdeps/unix/sysv/linux/sysconf.c b/sysdeps/unix/sysv/linux/sysconf.c index 25208cd..99d4c27 100644 --- a/sysdeps/unix/sysv/linux/sysconf.c +++ b/sysdeps/unix/sysv/linux/sysconf.c @@ -23,6 +23,7 @@ #include #include #include +#include #include #include -- 2.7.4