From patchwork Tue Jul 1 22:05:21 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roland McGrath X-Patchwork-Id: 1844 Received: (qmail 16475 invoked by alias); 1 Jul 2014 22:05:32 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 16423 invoked by uid 89); 1 Jul 2014 22:05:28 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-HELO: topped-with-meat.com MIME-Version: 1.0 From: Roland McGrath To: "GNU C. Library" Subject: [COMMITTED PATCH] Add missing #include for MIN/MAX users. Message-Id: <20140701220521.608E72C3973@topped-with-meat.com> Date: Tue, 1 Jul 2014 15:05:21 -0700 (PDT) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=SvUDtp+0 c=1 sm=1 tr=0 a=WkljmVdYkabdwxfqvArNOQ==:117 a=14OXPxybAAAA:8 a=ZSbek49_Yg4A:10 a=Z6MIti7PxpgA:10 a=kj9zAlcOel0A:10 a=hOe2yjtxAAAA:8 a=Uym4yHBqv3ezdImzOHAA:9 a=CjuIK1q_8ugA: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. --- 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 --- 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 --- 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 --- a/sysdeps/unix/sysv/linux/sysconf.c +++ b/sysdeps/unix/sysv/linux/sysconf.c @@ -23,6 +23,7 @@ #include #include #include +#include #include #include