Declare mkstemps().

This commit is contained in:
Bruce Evans 1999-04-09 15:06:56 +00:00
parent 1dc547e7a9
commit 95a7753b24
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=45513
3 changed files with 11 additions and 8 deletions

View File

@ -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_

View File

@ -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));

View File

@ -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_