exec_ecoff.h: add missing prototype for cpu_exec_ecoff_hook

sysctl.h: added missing prototype for sysctl_ntptime
systm.h: added missing prototypes for setjmp, longjmp.
This commit is contained in:
christos 1996-03-07 14:29:44 +00:00
parent 32761b2385
commit f8a755a2de
3 changed files with 9 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: exec_ecoff.h,v 1.7 1995/06/16 02:07:56 mellon Exp $ */
/* $NetBSD: exec_ecoff.h,v 1.8 1996/03/07 14:29:44 christos Exp $ */
/*
* Copyright (c) 1994 Adam Glass
@ -100,5 +100,7 @@ struct ecoff_scnhdr { /* needed for size info */
#ifdef _KERNEL
int exec_ecoff_makecmds __P((struct proc *, struct exec_package *));
int cpu_exec_ecoff_hook __P((struct proc *, struct exec_package *,
struct ecoff_aouthdr *));
#endif /* _KERNEL */
#endif /* !_SYS_EXEC_ECOFF_H_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: sysctl.h,v 1.12 1996/02/27 04:20:33 jonathan Exp $ */
/* $NetBSD: sysctl.h,v 1.13 1996/03/07 14:29:46 christos Exp $ */
/*
* Copyright (c) 1989, 1993
@ -346,6 +346,7 @@ int sysctl_clockrate __P((char *, size_t *));
int sysctl_rdstring __P((void *, size_t *, void *, char *));
int sysctl_rdstruct __P((void *, size_t *, void *, void *, int));
int sysctl_vnode __P((char *, size_t *));
int sysctl_ntptime __P((char *, size_t *));
void fill_eproc __P((struct proc *, struct eproc *));

View File

@ -1,4 +1,4 @@
/* $NetBSD: systm.h,v 1.40 1996/02/10 00:13:28 christos Exp $ */
/* $NetBSD: systm.h,v 1.41 1996/03/07 14:29:48 christos Exp $ */
/*-
* Copyright (c) 1982, 1988, 1991, 1993
@ -191,6 +191,9 @@ void doshutdownhooks __P((void));
int uiomove __P((caddr_t, int, struct uio *));
int setjmp __P((label_t *));
void longjmp __P((label_t *, int));
#include <lib/libkern/libkern.h>
#ifdef DDB