summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-06-22 00:45:59 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-06-22 00:45:59 +0000
commitec4b7dcfb07564044646831c2ad6d31966d37840 (patch)
treea9914d8dd60241ee3c83117a906ea5ed16114e13 /lib
parentd9a1b68d00f8bb70dc33078e16e489f9cba133a0 (diff)
3 missing header files
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/sys/makelintstub.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/sys/makelintstub.sh b/lib/libc/sys/makelintstub.sh
index 2d8ad2e661a..fa9b61bd57e 100644
--- a/lib/libc/sys/makelintstub.sh
+++ b/lib/libc/sys/makelintstub.sh
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $OpenBSD: makelintstub.sh,v 1.2 2002/07/06 19:14:20 nordin Exp $
+# $OpenBSD: makelintstub.sh,v 1.3 2003/06/22 00:45:58 deraadt Exp $
# $NetBSD: makelintstub,v 1.2 1997/11/05 05:46:18 thorpej Exp $
#
# Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@@ -63,6 +63,8 @@ header()
#include <sys/ioctl.h>
#include <sys/ktrace.h>
#include <sys/mman.h>
+ #include <sys/event.h>
+ #include <xfs/xfs_pioctl.h>
#include <sys/wait.h>
#include <stdio.h>
#undef DIRBLKSIZ
@@ -75,6 +77,7 @@ header()
#else
#include <varargs.h>
#endif
+ #include <err.h>
__EOF__
}