diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-01-17 16:20:29 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-01-17 16:20:29 +0000 |
commit | da4bed297604cdd186373fa5a596904ee5c490d3 (patch) | |
tree | a443425e443a5bba0913b0b8b7f9a8e8fa031c10 /bin | |
parent | 268f7a92c703e4a2540b4dd9e476eac915678a96 (diff) |
pax: Switch a function definition from K&R to ANSI.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/pax/options.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/pax/options.c b/bin/pax/options.c index ca53a1da048..1ed9f98f5d6 100644 --- a/bin/pax/options.c +++ b/bin/pax/options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options.c,v 1.104 2022/12/04 23:50:45 cheloha Exp $ */ +/* $OpenBSD: options.c,v 1.105 2023/01/17 16:20:28 tb Exp $ */ /* $NetBSD: options.c,v 1.6 1996/03/26 23:54:18 mrg Exp $ */ /*- @@ -1107,8 +1107,7 @@ tar_options(int argc, char **argv) int mkpath(char *); int -mkpath(path) - char *path; +mkpath(char *path) { struct stat sb; char *slash; |