diff options
author | mike <mike@FreeBSD.org> | 2002-03-25 05:23:45 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-03-25 05:23:45 +0000 |
commit | b1d120cfbf13ed91c700f1deb2d2510a93e9598c (patch) | |
tree | 878156a2ca486e0660b50181abc4643aab400368 /usr.bin/gprof | |
parent | bd8de5c3a5c01db8eda62c71b2dfeab5137e624b (diff) | |
download | FreeBSD-src-b1d120cfbf13ed91c700f1deb2d2510a93e9598c.zip FreeBSD-src-b1d120cfbf13ed91c700f1deb2d2510a93e9598c.tar.gz |
Include <stdint.h> for definition of intmax_t and/or uintmax_t.
Diffstat (limited to 'usr.bin/gprof')
-rw-r--r-- | usr.bin/gprof/gprof.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/gprof/gprof.c b/usr.bin/gprof/gprof.c index 81e50d6..fae3361 100644 --- a/usr.bin/gprof/gprof.c +++ b/usr.bin/gprof/gprof.c @@ -47,6 +47,7 @@ static const char rcsid[] = #include <err.h> #include <limits.h> +#include <stdint.h> #include "gprof.h" static int valcmp(const void *, const void *); |