summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/cvs/Makefile8
-rw-r--r--usr.bin/cvs/cvs.h7
2 files changed, 10 insertions, 5 deletions
diff --git a/usr.bin/cvs/Makefile b/usr.bin/cvs/Makefile
index b7f66594e71..c44cacb15a2 100644
--- a/usr.bin/cvs/Makefile
+++ b/usr.bin/cvs/Makefile
@@ -1,14 +1,14 @@
-# $OpenBSD: Makefile,v 1.34 2007/01/07 02:39:24 joris Exp $
+# $OpenBSD: Makefile,v 1.35 2007/01/12 09:27:25 xsa Exp $
PROG= opencvs
MAN= cvs.1 cvsignore.5 cvsrc.5 cvswrappers.5 cvsintro.7
CPPFLAGS+=-I${.CURDIR}
SRCS= cvs.c add.c admin.c annotate.c commit.c config.c checkout.c client.c \
- buf.c cmd.c date.y diff.c diff3.c diff_internals.c entries.c fatal.c \
- file.c getlog.c log.c logmsg.c import.c init.c remove.c \
+ buf.c cmd.c date.y diff.c diff3.c diff_internals.c edit.c entries.c \
+ fatal.c file.c getlog.c log.c logmsg.c import.c init.c remove.c \
repository.c rcs.c rcsnum.c rcstime.c remote.c root.c server.c \
- status.c tag.c worklist.c util.c update.c version.c xmalloc.c
+ status.c tag.c worklist.c util.c update.c version.c watch.c xmalloc.c
CFLAGS+=-Wall
CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h
index d4cadd4a7e5..0182af44319 100644
--- a/usr.bin/cvs/cvs.h
+++ b/usr.bin/cvs/cvs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cvs.h,v 1.126 2007/01/07 02:39:24 joris Exp $ */
+/* $OpenBSD: cvs.h,v 1.127 2007/01/12 09:27:25 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -375,12 +375,17 @@ int cvs_admin(int, char **);
int cvs_annotate(int, char **);
int cvs_commit(int, char **);
int cvs_diff(int, char **);
+int cvs_edit(int, char **);
+int cvs_editors(int, char **);
int cvs_getlog(int, char **);
int cvs_init(int, char **);
int cvs_remove(int, char **);
int cvs_status(int, char **);
int cvs_tag(int, char **);
+int cvs_unedit(int, char **);
int cvs_update(int, char **);
int cvs_version(int, char **);
+int cvs_watch(int, char **);
+int cvs_watchers(int, char **);
#endif