diff options
author | anton <anton@cvs.openbsd.org> | 2018-04-07 14:55:14 +0000 |
---|---|---|
committer | anton <anton@cvs.openbsd.org> | 2018-04-07 14:55:14 +0000 |
commit | 9da1c3b62c53e7351ffbea4e56928d0e89a57c0a (patch) | |
tree | ba611c2bd74af6856e4f97e6e04b134168969c51 /usr.bin/patch/patch.c | |
parent | 2767235674069f659377a533f3a2bd2c0d3ab5b1 (diff) |
Remove unused pathnames.h header since patch was refactoring into not invoking
ed back in 2015; ok millert@ tb@ tobias@
Diffstat (limited to 'usr.bin/patch/patch.c')
-rw-r--r-- | usr.bin/patch/patch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/patch/patch.c b/usr.bin/patch/patch.c index fef7df6466e..b0627c89b86 100644 --- a/usr.bin/patch/patch.c +++ b/usr.bin/patch/patch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: patch.c,v 1.64 2017/06/12 14:23:26 deraadt Exp $ */ +/* $OpenBSD: patch.c,v 1.65 2018/04/07 14:55:13 anton Exp $ */ /* * patch - a program to apply diffs to original files @@ -33,6 +33,7 @@ #include <ctype.h> #include <getopt.h> #include <limits.h> +#include <paths.h> #include <stdio.h> #include <string.h> #include <stdlib.h> @@ -42,7 +43,6 @@ #include "pch.h" #include "inp.h" #include "backupfile.h" -#include "pathnames.h" #include "ed.h" mode_t filemode = 0644; |