Pull in <time.h> for struct tm, used in rcs.h
authorguenther <guenther@openbsd.org>
Fri, 26 Aug 2016 09:02:54 +0000 (09:02 +0000)
committerguenther <guenther@openbsd.org>
Fri, 26 Aug 2016 09:02:54 +0000 (09:02 +0000)
ok deraadt@

usr.bin/rcs/date.y
usr.bin/rcs/diff3.c
usr.bin/rcs/ident.c
usr.bin/rcs/merge.c
usr.bin/rcs/rcsclean.c
usr.bin/rcs/rcsmerge.c
usr.bin/rcs/rcsnum.c
usr.bin/rcs/rcsparse.c
usr.bin/rcs/rcstime.c
usr.bin/rcs/rlog.c

index aa6200a..20f5b78 100644 (file)
@@ -1,5 +1,5 @@
 %{
-/*     $OpenBSD: date.y,v 1.13 2015/06/13 20:15:21 nicm Exp $  */
+/*     $OpenBSD: date.y,v 1.14 2016/08/26 09:02:54 guenther Exp $      */
 
 /*
 **  Originally written by Steven M. Bellovin <smb@research.att.com> while
@@ -17,6 +17,7 @@
 #include <ctype.h>
 #include <err.h>
 #include <string.h>
+#include <time.h>
 
 #include "rcsprog.h"
 
index 5e5610c..ef96d0d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: diff3.c,v 1.38 2015/11/02 16:45:21 nicm Exp $ */
+/*     $OpenBSD: diff3.c,v 1.39 2016/08/26 09:02:54 guenther Exp $     */
 
 /*
  * Copyright (C) Caldera International Inc.  2001-2002.
@@ -69,6 +69,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "diff.h"
index 20bded2..10a221a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ident.c,v 1.31 2015/11/02 16:45:21 nicm Exp $ */
+/*     $OpenBSD: ident.c,v 1.32 2016/08/26 09:02:54 guenther Exp $     */
 /*
  * Copyright (c) 2005 Xavier Santolaria <xsa@openbsd.org>
  * All rights reserved.
@@ -28,6 +28,7 @@
 #include <err.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "rcsprog.h"
index 63b4863..25dd0e5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: merge.c,v 1.9 2014/10/10 08:15:25 otto Exp $  */
+/*     $OpenBSD: merge.c,v 1.10 2016/08/26 09:02:54 guenther Exp $     */
 /*
  * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org>
  * All rights reserved.
@@ -27,6 +27,7 @@
 #include <err.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "rcsprog.h"
index 1b60277..2b48bc0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rcsclean.c,v 1.55 2015/11/02 16:45:21 nicm Exp $      */
+/*     $OpenBSD: rcsclean.c,v 1.56 2016/08/26 09:02:54 guenther Exp $  */
 /*
  * Copyright (c) 2005 Joris Vink <joris@openbsd.org>
  * All rights reserved.
@@ -30,6 +30,7 @@
 #include <err.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "rcsprog.h"
index 9b810bc..8dc10f4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rcsmerge.c,v 1.56 2015/11/02 16:45:21 nicm Exp $      */
+/*     $OpenBSD: rcsmerge.c,v 1.57 2016/08/26 09:02:54 guenther Exp $  */
 /*
  * Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org>
  * All rights reserved.
@@ -28,6 +28,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "rcsprog.h"
index 99c0630..1db7899 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rcsnum.c,v 1.18 2015/11/02 16:45:21 nicm Exp $        */
+/*     $OpenBSD: rcsnum.c,v 1.19 2016/08/26 09:02:54 guenther Exp $    */
 /*
  * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
  * All rights reserved.
 
 #include <ctype.h>
 #include <err.h>
+#include <limits.h>
 #include <stdlib.h>
 #include <string.h>
-#include <limits.h>
+#include <time.h>
 
 #include "rcs.h"
 #include "xmalloc.h"
index 0c02edf..6527da8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rcsparse.c,v 1.15 2015/06/13 20:15:21 nicm Exp $      */
+/*     $OpenBSD: rcsparse.c,v 1.16 2016/08/26 09:02:54 guenther Exp $  */
 /*
  * Copyright (c) 2010 Tobias Stoeckmann <tobias@openbsd.org>
  *
@@ -24,6 +24,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "rcs.h"
index 290086c..1e88663 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rcstime.c,v 1.5 2014/09/30 11:01:20 otto Exp $        */
+/*     $OpenBSD: rcstime.c,v 1.6 2016/08/26 09:02:54 guenther Exp $    */
 /*
  * Copyright (c) 2006 Joris Vink <joris@openbsd.org>
  * All rights reserved.
@@ -27,6 +27,7 @@
 #include <err.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 
 #include "rcs.h"
 
index bb9d1c2..20b6b78 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rlog.c,v 1.71 2015/01/16 06:40:11 deraadt Exp $       */
+/*     $OpenBSD: rlog.c,v 1.72 2016/08/26 09:02:54 guenther Exp $      */
 /*
  * Copyright (c) 2005, 2009 Joris Vink <joris@openbsd.org>
  * Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org>
@@ -31,6 +31,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "rcsprog.h"