diff options
author | Roland McGrath <roland@hack.frob.com> | 2014-07-01 15:01:24 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2014-07-01 15:01:24 -0700 |
commit | ca06321df0d5327f30b7ef7065278974dd89c6d8 (patch) | |
tree | addf6ff2a5834bb0f5b84afed34a6d9eed0fbe90 /nptl/pthread_mutex_lock.c | |
parent | 631021e0aaefbf9fde4b4472e4ec1d51fffb9bbd (diff) | |
download | glibc-ca06321df0d5327f30b7ef7065278974dd89c6d8.tar glibc-ca06321df0d5327f30b7ef7065278974dd89c6d8.tar.gz glibc-ca06321df0d5327f30b7ef7065278974dd89c6d8.tar.bz2 glibc-ca06321df0d5327f30b7ef7065278974dd89c6d8.zip |
Add missing #include for MIN/MAX users.
Diffstat (limited to 'nptl/pthread_mutex_lock.c')
-rw-r--r-- | nptl/pthread_mutex_lock.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nptl/pthread_mutex_lock.c b/nptl/pthread_mutex_lock.c index 2c317770f9..d94f4c9483 100644 --- a/nptl/pthread_mutex_lock.c +++ b/nptl/pthread_mutex_lock.c @@ -20,6 +20,7 @@ #include <errno.h> #include <stdlib.h> #include <unistd.h> +#include <sys/param.h> #include <not-cancel.h> #include "pthreadP.h" #include <lowlevellock.h> |