1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-20 02:38:43 +00:00

<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.
This commit is contained in:
Warner Losh 2008-03-04 15:56:17 +00:00
parent 631ea79e3f
commit d40ca10a58
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176799

View File

@ -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>