diff options
author | dim <dim@FreeBSD.org> | 2011-12-19 20:33:53 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2011-12-19 20:33:53 +0000 |
commit | 4ae7354b148831bc4303c567d170b2461817c9d9 (patch) | |
tree | f50092e9a5e58bf8d82c94b7c6d889c3f1d75797 /usr.sbin/timed | |
parent | feb552d6f384c256abba17a6722c24e709ed6bc4 (diff) | |
download | FreeBSD-src-4ae7354b148831bc4303c567d170b2461817c9d9.zip FreeBSD-src-4ae7354b148831bc4303c567d170b2461817c9d9.tar.gz |
Fix r228719; when you use intmax_t, you need stdint.h.
Pointy hat to: dim
MFC after: 1 week
Diffstat (limited to 'usr.sbin/timed')
-rw-r--r-- | usr.sbin/timed/timed/globals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/timed/timed/globals.h b/usr.sbin/timed/timed/globals.h index c273241..0492d79 100644 --- a/usr.sbin/timed/timed/globals.h +++ b/usr.sbin/timed/timed/globals.h @@ -41,6 +41,7 @@ #include <errno.h> #include <limits.h> #include <netdb.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |