summaryrefslogtreecommitdiff
path: root/sbin/fsck_ffs/setup.c
diff options
context:
space:
mode:
authorCharles Longeau <chl@cvs.openbsd.org>2010-06-09 21:34:57 +0000
committerCharles Longeau <chl@cvs.openbsd.org>2010-06-09 21:34:57 +0000
commit41015be7f9de6db849920e9f2d72bb12dd47c7bb (patch)
treebc1958392fca0357c1e71200a2e53061b0b54df0 /sbin/fsck_ffs/setup.c
parent5c4be7b6da312a881999adbd963d56f99b0f4c4e (diff)
add missing headers needed for opendev() and close()
ok jsing@ krw@
Diffstat (limited to 'sbin/fsck_ffs/setup.c')
-rw-r--r--sbin/fsck_ffs/setup.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sbin/fsck_ffs/setup.c b/sbin/fsck_ffs/setup.c
index 4b50a664f9e..7f430f1dd23 100644
--- a/sbin/fsck_ffs/setup.c
+++ b/sbin/fsck_ffs/setup.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: setup.c,v 1.43 2010/06/05 07:36:23 jsing Exp $ */
+/* $OpenBSD: setup.c,v 1.44 2010/06/09 21:34:56 chl Exp $ */
/* $NetBSD: setup.c,v 1.27 1996/09/27 22:45:19 christos Exp $ */
/*
@@ -45,6 +45,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <util.h>
+#include <unistd.h>
#include <ctype.h>
#include "fsck.h"