summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diff.h
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-07-04 02:54:36 +0000
committermillert <millert@openbsd.org>2003-07-04 02:54:36 +0000
commitc5b7f86462e55194e79a600d3e99fe008702f530 (patch)
tree85d4466eb5428b0be03387606edc6a59a5e1190f /usr.bin/diff/diff.h
parentno more thailand. joel knight via nick@ (diff)
downloadwireguard-openbsd-c5b7f86462e55194e79a600d3e99fe008702f530.tar.xz
wireguard-openbsd-c5b7f86462e55194e79a600d3e99fe008702f530.zip
Some cosmetic fixes:
o get rid of now-unused tempfile variable o move inifdef into diffreg.c (only used there) o correct a comment o use _PATH_DIFF, _PATH_DIFFH and _PATH_PR instead of variables set to them o get rid of hack to look for pr and diff in /bin
Diffstat (limited to 'usr.bin/diff/diff.h')
-rw-r--r--usr.bin/diff/diff.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/diff/diff.h b/usr.bin/diff/diff.h
index 092a0f8d53d..ba259f92438 100644
--- a/usr.bin/diff/diff.h
+++ b/usr.bin/diff/diff.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: diff.h,v 1.11 2003/06/26 22:04:45 millert Exp $ */
+/* $OpenBSD: diff.h,v 1.12 2003/07/04 02:54:36 millert Exp $ */
/*
* Copyright (C) Caldera International Inc. 2001-2002.
@@ -62,11 +62,10 @@
extern int aflag, bflag, hflag, iflag, lflag, rflag, sflag, tflag, wflag;
extern char *start, *ifdefname;
-extern int opt, wantelses, inifdef, context, status, anychange;
+extern int opt, wantelses, context, status, anychange;
extern char *tempfiles[], **diffargv;
extern char *file1, *file2, *efile1, *efile2;
extern struct stat stb1, stb2;
-extern const char *diffh, *diff, *pr;
void *emalloc(size_t);
void *erealloc(void *, size_t);