]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
need time.h for time(), got side-loaded before from <fcntl.h> via <sys/stat.h>
authorchristos <christos@NetBSD.org>
Tue, 10 Jan 2017 20:41:40 +0000 (20:41 +0000)
committerchristos <christos@NetBSD.org>
Tue, 10 Jan 2017 20:41:40 +0000 (20:41 +0000)
larn/io.c

index 245ce8a48cfbc28861885cb3326cb11d33abcd3f..d803fd81412fb80dffcd184a63824f00e2ade56b 100644 (file)
--- a/larn/io.c
+++ b/larn/io.c
@@ -1,4 +1,4 @@
-/*     $NetBSD: io.c,v 1.27 2012/06/19 05:30:43 dholland Exp $ */
+/*     $NetBSD: io.c,v 1.28 2017/01/10 20:41:40 christos Exp $ */
 
 /*
  * io.c                         Larn is copyrighted 1986 by Noah Morgan.
 
 /*
  * io.c                         Larn is copyrighted 1986 by Noah Morgan.
@@ -62,7 +62,7 @@
  */
 #include <sys/cdefs.h>
 #ifndef lint
  */
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: io.c,v 1.27 2012/06/19 05:30:43 dholland Exp $");
+__RCSID("$NetBSD: io.c,v 1.28 2017/01/10 20:41:40 christos Exp $");
 #endif /* not lint */
 
 #include "header.h"
 #endif /* not lint */
 
 #include "header.h"
@@ -71,6 +71,7 @@ __RCSID("$NetBSD: io.c,v 1.27 2012/06/19 05:30:43 dholland Exp $");
 #include <unistd.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <time.h>
 #include <term.h>
 #include <fcntl.h>
 #include <errno.h>
 #include <term.h>
 #include <fcntl.h>
 #include <errno.h>