diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2010-12-17 19:36:04 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2010-12-17 19:36:04 +0000 |
commit | 91e34a86f3fc1598070ec6aebc48be50b387b066 (patch) | |
tree | 7c5fec7ba98e048b93f3f35b0ef2370de286a9ea /sbin | |
parent | 44d736e33399e6b11a28c8471d052070abbc4d07 (diff) |
Add missing util.h include for opendev()
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/fsck_msdos/check.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/fsck_msdos/check.c b/sbin/fsck_msdos/check.c index f9e149f264a..ee6a05b4596 100644 --- a/sbin/fsck_msdos/check.c +++ b/sbin/fsck_msdos/check.c @@ -1,4 +1,4 @@ -/* $OpenBSD: check.c,v 1.13 2010/11/17 12:31:11 jsing Exp $ */ +/* $OpenBSD: check.c,v 1.14 2010/12/17 19:36:03 millert Exp $ */ /* $NetBSD: check.c,v 1.8 1997/10/17 11:19:29 ws Exp $ */ /* @@ -40,6 +40,7 @@ #include <stdio.h> #include <unistd.h> #include <fcntl.h> +#include <util.h> #include "ext.h" |