summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/date.y
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2005-04-18 21:55:14 +0000
committerJoris Vink <joris@cvs.openbsd.org>2005-04-18 21:55:14 +0000
commit7f294a59cb2bc7a1f685048adf574b34d1aa97c9 (patch)
treecccfc5b6ef1af2294fe66467b18df41d5c2c971b /usr.bin/cvs/date.y
parentbe1b8546f2d8e4871f3247e1e4fcd9aa79e7c435 (diff)
missing prototype for get_date();
from deraadt@
Diffstat (limited to 'usr.bin/cvs/date.y')
-rw-r--r--usr.bin/cvs/date.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/date.y b/usr.bin/cvs/date.y
index 685c3982b2d..71494006852 100644
--- a/usr.bin/cvs/date.y
+++ b/usr.bin/cvs/date.y
@@ -1,5 +1,5 @@
%{
-/* $OpenBSD: date.y,v 1.5 2005/03/30 16:41:07 joris Exp $ */
+/* $OpenBSD: date.y,v 1.6 2005/04/18 21:55:13 joris Exp $ */
/*
** Originally written by Steven M. Bellovin <smb@research.att.com> while
@@ -82,6 +82,7 @@ static int yyerror (const char *, ...);
static int yylex (void);
static int yyparse (void);
+time_t get_date(char *, struct timeb *);
%}