Add a missing include for time.h to get the definitions of clock_gettime and strftime.
authorbcook <bcook@openbsd.org>
Sun, 4 Jan 2015 01:11:24 +0000 (01:11 +0000)
committerbcook <bcook@openbsd.org>
Sun, 4 Jan 2015 01:11:24 +0000 (01:11 +0000)
ok jsing@ phessler@ naddy@

usr.sbin/ntpd/ntpd.c
usr.sbin/ntpd/util.c

index 20b4993..36823f6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ntpd.c,v 1.79 2014/02/10 09:12:34 dtucker Exp $ */
+/*     $OpenBSD: ntpd.c,v 1.80 2015/01/04 01:11:24 bcook Exp $ */
 
 /*
  * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -30,6 +30,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 #include <err.h>
 
index 839cf8c..88f9a51 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: util.c,v 1.15 2013/10/15 20:35:55 krw Exp $ */
+/*     $OpenBSD: util.c,v 1.16 2015/01/04 01:11:24 bcook Exp $ */
 
 /*
  * Copyright (c) 2004 Alexander Guy <alexander.guy@andern.org>
@@ -16,9 +16,9 @@
  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/time.h>
 #include <limits.h>
 #include <stdio.h>
+#include <time.h>
 
 #include "ntpd.h"