=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/remove.c,v retrieving revision 1.12 retrieving revision 1.13 diff -c -r1.12 -r1.13 *** src/usr.bin/cvs/remove.c 2005/04/21 20:56:12 1.12 --- src/usr.bin/cvs/remove.c 2005/05/12 14:04:13 1.13 *************** *** 1,4 **** ! /* $OpenBSD: remove.c,v 1.12 2005/04/21 20:56:12 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * Copyright (c) 2004 Xavier Santolaria --- 1,4 ---- ! /* $OpenBSD: remove.c,v 1.13 2005/05/12 14:04:13 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * Copyright (c) 2004 Xavier Santolaria *************** *** 42,49 **** extern char *__progname; ! int cvs_remove_file(CVSFILE *, void *); ! int cvs_remove_options(char *, int, char **, int *); static int force_remove = 0; /* -f option */ --- 42,49 ---- extern char *__progname; ! static int cvs_remove_file(CVSFILE *, void *); ! static int cvs_remove_options(char *, int, char **, int *); static int force_remove = 0; /* -f option */ *************** *** 57,63 **** CVS_CMD_SENDDIR | CVS_CMD_SENDARGS2 | CVS_CMD_ALLOWSPEC }; ! int cvs_remove_options(char *opt, int argc, char **argv, int *arg) { int ch; --- 57,63 ---- CVS_CMD_SENDDIR | CVS_CMD_SENDARGS2 | CVS_CMD_ALLOWSPEC }; ! static int cvs_remove_options(char *opt, int argc, char **argv, int *arg) { int ch; *************** *** 86,92 **** } ! int cvs_remove_file(CVSFILE *cf, void *arg) { int ret; --- 86,92 ---- } ! static int cvs_remove_file(CVSFILE *cf, void *arg) { int ret;