diff options
author | 2005-04-18 21:55:13 +0000 | |
---|---|---|
committer | 2005-04-18 21:55:13 +0000 | |
commit | d8e780e3d0c8cae4486be3ea86c430bb57a664b0 (patch) | |
tree | 63627f9625fe5c5a9e4b030c8d317c2998104a9e | |
parent | dummy handlers for the Entry, Modified, Is-Modified, Updated and (diff) | |
download | wireguard-openbsd-d8e780e3d0c8cae4486be3ea86c430bb57a664b0.tar.xz wireguard-openbsd-d8e780e3d0c8cae4486be3ea86c430bb57a664b0.zip |
missing prototype for get_date();
from deraadt@
-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 *); %} |