diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2023-11-19 10:41:26 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2023-11-19 10:41:26 +0000 |
commit | ee8bec44f864c1c0181b7080b3d8f6186d208c2f (patch) | |
tree | 58fc28e1e6c84492d47f7f5b289a3601d8f5c8ff /usr.sbin/ntpd | |
parent | a3323cd0721da9b98e619aaa43738e2619c029d4 (diff) |
util.c requires stdint.h for UINT32_MAX and friends.
OK tb@
Diffstat (limited to 'usr.sbin/ntpd')
-rw-r--r-- | usr.sbin/ntpd/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ntpd/util.c b/usr.sbin/ntpd/util.c index d490601b04d..c570c307a23 100644 --- a/usr.sbin/ntpd/util.c +++ b/usr.sbin/ntpd/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.26 2023/11/15 15:52:09 otto Exp $ */ +/* $OpenBSD: util.c,v 1.27 2023/11/19 10:41:25 claudio Exp $ */ /* * Copyright (c) 2004 Alexander Guy <alexander.guy@andern.org> @@ -18,6 +18,7 @@ #include <fcntl.h> #include <limits.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <time.h> |