diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-04-18 21:55:14 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-04-18 21:55:14 +0000 |
commit | 7f294a59cb2bc7a1f685048adf574b34d1aa97c9 (patch) | |
tree | cccfc5b6ef1af2294fe66467b18df41d5c2c971b /usr.bin/cvs/date.y | |
parent | be1b8546f2d8e4871f3247e1e4fcd9aa79e7c435 (diff) |
missing prototype for get_date();
from deraadt@
Diffstat (limited to 'usr.bin/cvs/date.y')
-rw-r--r-- | usr.bin/cvs/date.y | 3 |
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 *); %} |