diff options
author | imp <imp@FreeBSD.org> | 2008-03-04 15:56:17 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2008-03-04 15:56:17 +0000 |
commit | e66572500ece326a2a61fad138bcca7e5d684477 (patch) | |
tree | fa5b07f3b95f8f2f203e0270645f783373ca98a3 /usr.bin | |
parent | 48aef5a3f0488868236b4046cf4edbc2f92bfa4f (diff) | |
download | FreeBSD-src-e66572500ece326a2a61fad138bcca7e5d684477.zip FreeBSD-src-e66572500ece326a2a61fad138bcca7e5d684477.tar.gz |
<limits.h> is necessary for using INT_MIN, so included it here
explicitly rather than relying on name space pollution to pull it in
for us.
NB: The usage of INT_MIN is somewhat bogus and suspect to my eye, but this
commit doesn't address that issue.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/make/arch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c index 2b81c7f..d8206e0 100644 --- a/usr.bin/make/arch.c +++ b/usr.bin/make/arch.c @@ -94,6 +94,7 @@ __FBSDID("$FreeBSD$"); #include <ctype.h> #include <errno.h> #include <inttypes.h> +#include <limits.h> #include <regex.h> #include <stdlib.h> #include <stdio.h> |