diff options
Diffstat (limited to 'usr.sbin/rdate/ntpleaps.c')
-rw-r--r-- | usr.sbin/rdate/ntpleaps.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.sbin/rdate/ntpleaps.c b/usr.sbin/rdate/ntpleaps.c index ef71c07e3c1..0ba1a4176e2 100644 --- a/usr.sbin/rdate/ntpleaps.c +++ b/usr.sbin/rdate/ntpleaps.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntpleaps.c,v 1.5 2002/08/03 12:20:34 jakob Exp $ */ +/* $OpenBSD: ntpleaps.c,v 1.6 2002/08/10 21:37:28 jakob Exp $ */ /* * Copyright (c) 2002 by Thorsten "mirabile" Glaser <x86@ePOST.de> @@ -21,7 +21,7 @@ /* Leap second support for NTP clients (generic) */ -static const char RCSId[] = "$OpenBSD: ntpleaps.c,v 1.5 2002/08/03 12:20:34 jakob Exp $"; +static const char RCSId[] = "$OpenBSD: ntpleaps.c,v 1.6 2002/08/10 21:37:28 jakob Exp $"; /* @@ -29,12 +29,15 @@ static const char RCSId[] = "$OpenBSD: ntpleaps.c,v 1.5 2002/08/03 12:20:34 jako * at no real benefit. Read tzfile.h for why. */ +#include <sys/types.h> +#include <netinet/in.h> + #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <sys/types.h> + #include "ntpleaps.h" u_int64_t *leapsecs = NULL; |