diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-10 11:22:32 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-10 11:22:32 +0100 |
commit | 43d5c02c72bdaf59a8e0d4b06f2ae87e42269cbd (patch) | |
tree | 794f2ea45e3b94b328b0ec064987a54f96e8b10b /string | |
parent | 76a9b9986141b1a7d9fd290c349d27fcee780c7a (diff) | |
download | glibc-43d5c02c72bdaf59a8e0d4b06f2ae87e42269cbd.zip glibc-43d5c02c72bdaf59a8e0d4b06f2ae87e42269cbd.tar.gz glibc-43d5c02c72bdaf59a8e0d4b06f2ae87e42269cbd.tar.bz2 |
Fix build on hurd
* string/strcoll_l.c: Include <sys/param.h> for MIN/MAX macros.
Diffstat (limited to 'string')
-rw-r--r-- | string/strcoll_l.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/string/strcoll_l.c b/string/strcoll_l.c index 4ee101a..5095e98 100644 --- a/string/strcoll_l.c +++ b/string/strcoll_l.c @@ -24,6 +24,7 @@ #include <stdint.h> #include <stdlib.h> #include <string.h> +#include <sys/param.h> #ifndef STRING_TYPE # define STRING_TYPE char |