diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-04-13 19:55:42 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-04-13 19:55:42 +0000 |
commit | 7585d2c1a958f1659507c55a2df6106dfe35ef3d (patch) | |
tree | e79e3383ec14ec2a8b3836576c7a2c6bc8d87d5e /usr.bin/cvs/rcs.h | |
parent | 436a1a3a85cd8afa9cd60759b517ea74b1297af3 (diff) |
add support for the openrcs -o'range' option.
-o allows users to delete revisions in the specified RCS files.
example:
rcs -o1.4:1.6 foo deletes revisions 1.4 - 1.6
rcs -o1.3 foo deletes revision 1.3
joint work with niallo@
okay niallo@
Diffstat (limited to 'usr.bin/cvs/rcs.h')
-rw-r--r-- | usr.bin/cvs/rcs.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/cvs/rcs.h b/usr.bin/cvs/rcs.h index f544c73092b..4e4f226e39c 100644 --- a/usr.bin/cvs/rcs.h +++ b/usr.bin/cvs/rcs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rcs.h,v 1.59 2006/04/13 19:16:15 joris Exp $ */ +/* $OpenBSD: rcs.h,v 1.60 2006/04/13 19:55:41 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -274,4 +274,8 @@ void rcs_set_tz(char *, struct rcs_delta *, struct tm *); extern char *timezone_flag; +#if defined(RCSPROG) +extern char *rcs_tmpdir; +#endif + #endif /* RCS_H */ |