summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/file.h
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2007-02-13 16:47:49 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2007-02-13 16:47:49 +0000
commit36a765949f103e0c7e89cd00f5635ac7e7c89920 (patch)
treeee1ac1811267891d6f8ebdfedde5f4eaf8e781d3 /usr.bin/cvs/file.h
parentdbef7aac1a5508f8a7f3efe8e6b1bf13ab249800 (diff)
zap unused CVS_ISDIR() and CVS_ISFILE() macros. OK joris@.
Diffstat (limited to 'usr.bin/cvs/file.h')
-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 {