diff options
author | 2005-06-20 07:14:06 +0000 | |
---|---|---|
committer | 2005-06-20 07:14:06 +0000 | |
commit | 6fd3743fe6e9bb2da797aa227603f70552d86aae (patch) | |
tree | a228dcb2357acdd115194a3c6238270338964485 /usr.bin/patch/util.h | |
parent | K&R -> ANSI (diff) | |
download | wireguard-openbsd-6fd3743fe6e9bb2da797aa227603f70552d86aae.tar.xz wireguard-openbsd-6fd3743fe6e9bb2da797aa227603f70552d86aae.zip |
umask juggling not needed; with Lionel Fourquaux.
ok millert@ espie@
Diffstat (limited to 'usr.bin/patch/util.h')
-rw-r--r-- | usr.bin/patch/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/patch/util.h b/usr.bin/patch/util.h index b86358e0e55..b27bbe3cc3a 100644 --- a/usr.bin/patch/util.h +++ b/usr.bin/patch/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.14 2005/05/16 15:22:46 espie Exp $ */ +/* $OpenBSD: util.h,v 1.15 2005/06/20 07:14:06 otto Exp $ */ /* * patch - a program to apply diffs to original files @@ -47,4 +47,4 @@ void version(void); void my_exit(int) __attribute__((noreturn)); /* in mkpath.c */ -extern int mkpath(char *, mode_t, mode_t); +extern int mkpath(char *); |