diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-12 13:51:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-12 13:51:43 +0000 |
commit | bde1ca3cfc1caa4c3d1ce29de79212df84e68e72 (patch) | |
tree | edc7d15c1e9bdab5b4742059dcb507e42436ae90 | |
parent | b659456a8536ad34aaa7ebac1a4ee976bcff5a42 (diff) |
pull in local .h files to satisfy proto
-rw-r--r-- | usr.bin/patch/mkpath.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/patch/mkpath.c b/usr.bin/patch/mkpath.c index 1e600a8a8ba..7c0f13fbad4 100644 --- a/usr.bin/patch/mkpath.c +++ b/usr.bin/patch/mkpath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mkpath.c,v 1.2 2005/06/20 07:14:06 otto Exp $ */ +/* $OpenBSD: mkpath.c,v 1.3 2013/11/12 13:51:42 deraadt Exp $ */ /* * Copyright (c) 1983, 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -34,6 +34,9 @@ #include <errno.h> #include <string.h> +#include "common.h" +#include "util.h" + /* Code taken directly from mkdir(1). * mkpath -- create directories. |