diff options
author | 2001-08-16 18:34:40 +0000 | |
---|---|---|
committer | 2001-08-16 18:34:40 +0000 | |
commit | 79822b598fdc60b72969d4362ce00ea20bd39e5d (patch) | |
tree | c3613cb9f2e4ae3f26b3e759c4befe14ca9bef3d /lib/libutil/opendisk.c | |
parent | extra arg to pw_mkdb (diff) | |
download | wireguard-openbsd-79822b598fdc60b72969d4362ce00ea20bd39e5d.tar.xz wireguard-openbsd-79822b598fdc60b72969d4362ce00ea20bd39e5d.zip |
consistently use #include "util.h" not <util.h> since util.h lives in this dir.
Diffstat (limited to 'lib/libutil/opendisk.c')
-rw-r--r-- | lib/libutil/opendisk.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libutil/opendisk.c b/lib/libutil/opendisk.c index 7afe2422427..fba222d80c1 100644 --- a/lib/libutil/opendisk.c +++ b/lib/libutil/opendisk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: opendisk.c,v 1.1 1999/09/21 04:52:45 csapuntz Exp $ */ +/* $OpenBSD: opendisk.c,v 1.2 2001/08/16 18:34:40 millert Exp $ */ /* $NetBSD: opendisk.c,v 1.4 1997/09/30 17:13:50 phil Exp $ */ /*- @@ -42,11 +42,12 @@ #include <errno.h> #include <fcntl.h> -#include <util.h> #include <paths.h> #include <stdio.h> #include <string.h> +#include "util.h" + int opendisk(path, flags, buf, buflen, iscooked) const char *path; |