diff options
author | 2004-12-06 02:46:47 +0000 | |
---|---|---|
committer | 2004-12-06 02:46:47 +0000 | |
commit | cc8119314aae5f3086d2834413222a3716f9af55 (patch) | |
tree | a070c1f0dde689d294a50be64bc7cd49db0d6410 /usr.bin/cvs/diff.c | |
parent | also consider NFS_PORT to be a reserved port, as in 1.18 or something like (diff) | |
download | wireguard-openbsd-cc8119314aae5f3086d2834413222a3716f9af55.tar.xz wireguard-openbsd-cc8119314aae5f3086d2834413222a3716f9af55.zip |
Missing prototype for cvs_diff_sendflags(), removes a gcc warning
Diffstat (limited to 'usr.bin/cvs/diff.c')
-rw-r--r-- | usr.bin/cvs/diff.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c index 36f2f5aaa79..0308b01b1cd 100644 --- a/usr.bin/cvs/diff.c +++ b/usr.bin/cvs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.8 2004/11/26 16:23:50 jfb Exp $ */ +/* $OpenBSD: diff.c,v 1.9 2004/12/06 02:46:47 jfb Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -214,7 +214,8 @@ struct excludes { char *splice(char *, char *); int cvs_diffreg(const char *, const char *); -int cvs_diff_file (struct cvs_file *, void *); +int cvs_diff_file(struct cvs_file *, void *); +int cvs_diff_sendflags(struct cvsroot *, struct diff_arg *); static void output(const char *, FILE *, const char *, FILE *); static void check(FILE *, FILE *); static void range(int, int, char *); |