diff options
author | mike <mike@FreeBSD.org> | 2002-07-05 15:58:27 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-07-05 15:58:27 +0000 |
commit | 27f3da3573dab190f59e7ce8aace3b15c969e925 (patch) | |
tree | a41c113abb7c2549d3f2c6f25d72f022284e1613 /usr.bin/jot | |
parent | 4174d50d4da09cfc6a016dbf259458a16780f34a (diff) | |
download | FreeBSD-src-27f3da3573dab190f59e7ce8aace3b15c969e925.zip FreeBSD-src-27f3da3573dab190f59e7ce8aace3b15c969e925.tar.gz |
Don't depend on pollution in <limits.h> for the definition of
<stdint.h> macros.
Diffstat (limited to 'usr.bin/jot')
-rw-r--r-- | usr.bin/jot/jot.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/jot/jot.c b/usr.bin/jot/jot.c index ebaa3b4..04c6d65 100644 --- a/usr.bin/jot/jot.c +++ b/usr.bin/jot/jot.c @@ -55,6 +55,7 @@ __FBSDID("$FreeBSD$"); #include <err.h> #include <limits.h> #include <stdio.h> +#include <stdint.h> #include <stdlib.h> #include <string.h> #include <time.h> |