diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-12-03 02:19:18 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-12-03 02:19:18 +0000 |
commit | b3c04098cf7264c08a88143453690a416b691c3b (patch) | |
tree | 269cc4a18fc4844a158b685008a3391f68738d88 /usr.bin/cvs/file.c | |
parent | ff34a99de8822016b868897bd842cac9fb2762bd (diff) |
remove unused and useless functions, they just get in the way;
Diffstat (limited to 'usr.bin/cvs/file.c')
-rw-r--r-- | usr.bin/cvs/file.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c index d9a4656a1d9..1ecb29e7b10 100644 --- a/usr.bin/cvs/file.c +++ b/usr.bin/cvs/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.128 2005/12/03 01:02:08 joris Exp $ */ +/* $OpenBSD: file.c,v 1.129 2005/12/03 02:19:17 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -1082,22 +1082,6 @@ cvs_file_free(CVSFILE *cf) /* - * cvs_file_examine() - * - * Walk through the files, calling the callback as we go. - */ -int -cvs_file_examine(CVSFILE *cf, int (*exam)(CVSFILE *, void *), void *arg) -{ - int ret; - CVSFILE *fp; - - fp = NULL; - ret = 0; - return (ret); -} - -/* * cvs_file_sort() * * Sort a list of cvs file structures according to their filename. The list |