diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-05-30 03:24:55 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-05-30 03:24:55 +0000 |
commit | cb92c35138d095b92c442f60f6a4a2a549b75546 (patch) | |
tree | a2efeaa239e18e14a642b0a6acb4baf90ff0b189 /usr.bin | |
parent | 5472bd4d562247a0e2802cb0030c2092ec6f51e1 (diff) |
Remove unused struct diff_arg.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/diff_internals.c | 9 | ||||
-rw-r--r-- | usr.bin/rcs/diff.c | 9 |
2 files changed, 2 insertions, 16 deletions
diff --git a/usr.bin/cvs/diff_internals.c b/usr.bin/cvs/diff_internals.c index 61d74f8dbc7..71b9c502348 100644 --- a/usr.bin/cvs/diff_internals.c +++ b/usr.bin/cvs/diff_internals.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff_internals.c,v 1.11 2007/05/30 02:21:20 ray Exp $ */ +/* $OpenBSD: diff_internals.c,v 1.12 2007/05/30 03:24:54 ray Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -162,13 +162,6 @@ struct context_vec { int d; /* end line in new file */ }; -struct diff_arg { - char *rev1; - char *rev2; - char *date1; - char *date2; -}; - static void output(FILE *, FILE *); static void check(FILE *, FILE *); static void range(int, int, char *); diff --git a/usr.bin/rcs/diff.c b/usr.bin/rcs/diff.c index 88284ec88a3..16c73b7fefc 100644 --- a/usr.bin/rcs/diff.c +++ b/usr.bin/rcs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.18 2007/05/29 08:02:59 ray Exp $ */ +/* $OpenBSD: diff.c,v 1.19 2007/05/30 03:24:54 ray Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -165,13 +165,6 @@ struct context_vec { int d; /* end line in new file */ }; -struct diff_arg { - char *rev1; - char *rev2; - char *date1; - char *date2; -}; - static void output(FILE *, FILE *, int); static void check(FILE *, FILE *, int); static void range(int, int, char *); |