diff options
author | 2003-10-31 20:20:45 +0000 | |
---|---|---|
committer | 2003-10-31 20:20:45 +0000 | |
commit | 53900eeeee8fbeb3d1e027325a2bccbabe900ee4 (patch) | |
tree | e268e0bb440ddebfe2729043139f72b0d76983b6 /usr.bin/patch/util.h | |
parent | Set fix, initial version was out of date. (diff) | |
download | wireguard-openbsd-53900eeeee8fbeb3d1e027325a2bccbabe900ee4.tar.xz wireguard-openbsd-53900eeeee8fbeb3d1e027325a2bccbabe900ee4.zip |
o fairly major man page reorganization
o add --posix option for strict POSIX conformance
o change filename determination to match GNU patch
Tested by various people, including a full ports build by naddy@
Diffstat (limited to 'usr.bin/patch/util.h')
-rw-r--r-- | usr.bin/patch/util.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/patch/util.h b/usr.bin/patch/util.h index e2f480f6c49..0ec187028b9 100644 --- a/usr.bin/patch/util.h +++ b/usr.bin/patch/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.11 2003/08/15 08:00:51 otto Exp $ */ +/* $OpenBSD: util.h,v 1.12 2003/10/31 20:20:45 millert Exp $ */ /* * patch - a program to apply diffs to original files @@ -26,7 +26,8 @@ * behaviour */ -char *fetchname(const char *, int, int); +char *fetchname(const char *, bool *, int); +char *checked_in(char *); int backup_file(const char *); int move_file(const char *, const char *); int copy_file(const char *, const char *); |