diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-05-27 03:30:32 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-05-27 03:30:32 +0000 |
commit | 7d89f936fbdc2dd3d49c0286998836e36cc68365 (patch) | |
tree | 42e90824fb35b817279c75e6a187f7a54dc474fb /usr.bin/cvs/diff.h | |
parent | 98bdde20935bf70a07278f2c429c1e05c676ff48 (diff) |
commit the new opencvs code, i have been hacking on
this for the past 2 weeks now and it should go in at
the start of the hackathon so others can help out.
this code is a lot safer, smarter, faster and best of
all it is actually doing what it is suppose to do!
basic checkout, update, status, diff and commit are
working in local mode only.
there is no support for any remote setups now.
Diffstat (limited to 'usr.bin/cvs/diff.h')
-rw-r--r-- | usr.bin/cvs/diff.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/usr.bin/cvs/diff.h b/usr.bin/cvs/diff.h index 0e3c56480ee..8ed8b8bc865 100644 --- a/usr.bin/cvs/diff.h +++ b/usr.bin/cvs/diff.h @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.h,v 1.10 2006/04/14 23:29:01 joris Exp $ */ +/* $OpenBSD: diff.h,v 1.11 2006/05/27 03:30:30 joris Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -67,7 +67,6 @@ #define CVS_DIFF_H #define CVS_DIFF_DEFCTX 3 /* default context length */ - /* * Output format options */ @@ -92,11 +91,6 @@ #define D_SKIPPED1 8 /* path1 was a special file */ #define D_SKIPPED2 9 /* path2 was a special file */ - -#if defined(RCSPROG) -struct cvs_lines; -#endif - BUF *cvs_diff3(RCSFILE *, char *, RCSNUM *, RCSNUM *, int); void diff_output(const char *, ...); int cvs_diffreg(const char *, const char *, BUF *out); |