diff options
author | bde <bde@FreeBSD.org> | 1999-04-09 15:06:56 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-04-09 15:06:56 +0000 |
commit | b624ddd42093f5eb9104e8e66da8b702e2d56476 (patch) | |
tree | 69ee93c9351017ce045c25f26020f05f163b5644 /include | |
parent | 6f90f82fc7fb8272762925d9cb3a22d2d0b5afc7 (diff) | |
download | FreeBSD-src-b624ddd42093f5eb9104e8e66da8b702e2d56476.zip FreeBSD-src-b624ddd42093f5eb9104e8e66da8b702e2d56476.tar.gz |
Declare mkstemps().
Diffstat (limited to 'include')
-rw-r--r-- | include/kvm.h | 9 | ||||
-rw-r--r-- | include/unistd.h | 1 |
2 files changed, 6 insertions, 4 deletions
diff --git a/include/kvm.h b/include/kvm.h index 85476b7..4213dd5 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_ diff --git a/include/unistd.h b/include/unistd.h index e320c15..5ea6727 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -151,6 +151,7 @@ int lockf __P((int, int, off_t)); char *mkdtemp __P((char *)); int mknod __P((const char *, mode_t, dev_t)); int mkstemp __P((char *)); +int mkstemps __P((char *, int)); char *mktemp __P((char *)); int nfssvc __P((int, void *)); int nice __P((int)); |