diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-12-06 03:13:53 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-12-06 03:13:53 +0000 |
commit | fb2c4f64724f887d5e15d5932addc7c8d1ac7841 (patch) | |
tree | c440e200dfcae646ed528cc86bd4329726860c4c /usr.bin | |
parent | 797de75c7ecba7a88ffdef5f079db55dd6358024 (diff) |
Get rid of a gcc warning
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/getlog.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c index 662755e5472..02f3261ef94 100644 --- a/usr.bin/cvs/getlog.c +++ b/usr.bin/cvs/getlog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getlog.c,v 1.7 2004/11/26 16:23:50 jfb Exp $ */ +/* $OpenBSD: getlog.c,v 1.8 2004/12/06 03:13:52 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -48,7 +48,9 @@ #define CVS_GETLOG_REVEND \ "=============================================================================" +#ifdef notyet static void cvs_getlog_print (const char *, RCSFILE *, u_int); +#endif static int cvs_getlog_file (CVSFILE *, void *); |