Slight rearrangement.
This commit is contained in:
parent
b8f6f58d3b
commit
29916a94a6
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: fstab.h,v 1.7 1998/07/27 09:09:25 mycroft Exp $ */
|
||||
/* $NetBSD: fstab.h,v 1.8 1998/07/27 11:14:34 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1980, 1993
|
||||
|
@ -70,8 +70,6 @@ struct fstab {
|
|||
int fs_passno; /* pass number on parallel fsck */
|
||||
};
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
__BEGIN_DECLS
|
||||
struct fstab *getfsent __P((void));
|
||||
struct fstab *getfsspec __P((const char *));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: nlist.h,v 1.8 1998/07/27 09:09:25 mycroft Exp $ */
|
||||
/* $NetBSD: nlist.h,v 1.9 1998/07/27 11:14:34 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1991, 1993
|
||||
|
@ -83,8 +83,6 @@ struct nlist {
|
|||
#define N_FORMAT "%08x" /* namelist value format; XXX */
|
||||
#define N_STAB 0x0e0 /* mask for debugger symbols -- stab(5) */
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
__BEGIN_DECLS
|
||||
int nlist __P((const char *, struct nlist *));
|
||||
int __fdnlist __P((int, struct nlist *)); /* XXX for libkvm */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pwd.h,v 1.17 1998/07/27 09:33:44 mycroft Exp $ */
|
||||
/* $NetBSD: pwd.h,v 1.18 1998/07/27 11:14:35 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1989, 1993
|
||||
|
@ -92,8 +92,6 @@ struct passwd {
|
|||
time_t pw_expire; /* account expiration */
|
||||
};
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
__BEGIN_DECLS
|
||||
struct passwd *getpwuid __P((uid_t));
|
||||
struct passwd *getpwnam __P((const char *));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: stdlib.h,v 1.36 1998/07/27 09:58:49 mycroft Exp $ */
|
||||
/* $NetBSD: stdlib.h,v 1.37 1998/07/27 11:14:35 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990, 1993
|
||||
|
@ -38,6 +38,7 @@
|
|||
#ifndef _STDLIB_H_
|
||||
#define _STDLIB_H_
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
#include <sys/featuretest.h>
|
||||
|
||||
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \
|
||||
|
@ -92,8 +93,6 @@ extern int __mb_cur_max;
|
|||
#define MB_CUR_MAX 1 /* XXX */
|
||||
#endif
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
__BEGIN_DECLS
|
||||
__dead void
|
||||
abort __P((void));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: time.h,v 1.19 1998/07/27 11:08:38 mycroft Exp $ */
|
||||
/* $NetBSD: time.h,v 1.20 1998/07/27 11:09:19 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1989, 1993
|
||||
|
@ -45,6 +45,7 @@
|
|||
|
||||
#include <sys/cdefs.h>
|
||||
#include <machine/ansi.h>
|
||||
#include <machine/limits.h> /* Include file containing CLK_TCK. */
|
||||
|
||||
#ifndef NULL
|
||||
#define NULL 0
|
||||
|
@ -91,10 +92,6 @@ struct tm {
|
|||
__aconst char *tm_zone; /* timezone abbreviation */
|
||||
};
|
||||
|
||||
#include <machine/limits.h> /* Include file containing CLK_TCK. */
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
__BEGIN_DECLS
|
||||
char *asctime __P((const struct tm *));
|
||||
clock_t clock __P((void));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ttyent.h,v 1.9 1998/07/27 09:09:27 mycroft Exp $ */
|
||||
/* $NetBSD: ttyent.h,v 1.10 1998/07/27 11:14:37 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1989, 1993
|
||||
|
@ -68,8 +68,6 @@ struct ttyent {
|
|||
__aconst char *ty_comment;/* comment field */
|
||||
};
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
__BEGIN_DECLS
|
||||
struct ttyent *getttyent __P((void));
|
||||
struct ttyent *getttynam __P((const char *));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: unistd.h,v 1.63 1998/07/27 09:58:49 mycroft Exp $ */
|
||||
/* $NetBSD: unistd.h,v 1.64 1998/07/27 11:14:37 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -75,11 +75,10 @@
|
|||
#define _UNISTD_H_
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
#include <sys/featuretest.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/unistd.h>
|
||||
|
||||
#include <sys/featuretest.h>
|
||||
|
||||
|
||||
/*
|
||||
* IEEE Std 1003.1-90
|
||||
|
|
Loading…
Reference in New Issue