summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxsa <xsa@openbsd.org>2007-02-13 16:47:48 +0000
committerxsa <xsa@openbsd.org>2007-02-13 16:47:48 +0000
commit2b5bb1921731c3ca103d2970e5f3fb56187fd943 (patch)
treefc487f6d9bc40d40fd57649a24b5c1c3563ad9a8
parentmark up `dumb' using .Em, to be consistent with an earlier (diff)
downloadwireguard-openbsd-2b5bb1921731c3ca103d2970e5f3fb56187fd943.tar.xz
wireguard-openbsd-2b5bb1921731c3ca103d2970e5f3fb56187fd943.zip
zap unused CVS_ISDIR() and CVS_ISFILE() macros. OK joris@.
-rw-r--r--usr.bin/cvs/file.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/usr.bin/cvs/file.h b/usr.bin/cvs/file.h
index 14c172ef732..6b28c913303 100644
--- a/usr.bin/cvs/file.h
+++ b/usr.bin/cvs/file.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.h,v 1.41 2007/02/09 03:49:15 joris Exp $ */
+/* $OpenBSD: file.h,v 1.42 2007/02/13 16:47:48 xsa Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
@@ -76,12 +76,6 @@ struct cvs_recursion;
#define CVS_DIR 1
#define CVS_FILE 2
-#define CVS_ISDIR(cf) \
- ((cf)->file_type == CVS_DIR)
-
-#define CVS_ISFILE(cf) \
- ((cf)->file_type == CVS_FILE)
-
TAILQ_HEAD(cvs_flist, cvs_file);
struct cvs_ignpat {