diff options
author | Bruce Evans <bde@FreeBSD.org> | 1999-04-09 15:06:56 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1999-04-09 15:06:56 +0000 |
commit | 95a7753b2499033cc10ec39fdd07a9729e015bf0 (patch) | |
tree | 4e490aea701b6c04212566a5484d2228aed35686 /include/kvm.h | |
parent | 1dc547e7a98fa64ecb818cf22cc6b8f831c8321a (diff) |
Declare mkstemps().
Notes
Notes:
svn path=/head/; revision=45513
Diffstat (limited to 'include/kvm.h')
-rw-r--r-- | include/kvm.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/kvm.h b/include/kvm.h index 85476b7e86d9..4213dd5a38a0 100644 --- a/include/kvm.h +++ b/include/kvm.h @@ -31,19 +31,20 @@ * SUCH DAMAGE. * * @(#)kvm.h 8.1 (Berkeley) 6/2/93 - * $Id: kvm.h,v 1.7 1999/01/23 04:58:35 dillon Exp $ + * $Id: kvm.h,v 1.8 1999/01/27 11:29:15 bde Exp $ */ #ifndef _KVM_H_ #define _KVM_H_ +#include <sys/cdefs.h> +#include <machine/ansi.h> +#include <nlist.h> + /* Default version symbol. */ #define VRS_SYM "_version" #define VRS_KEY "VERSION" -#include <nlist.h> -#include <sys/cdefs.h> - #ifdef _BSD_SIZE_T_ typedef _BSD_SIZE_T_ size_t; #undef _BSD_SIZE_T_ |