make <sys/systm.h> #include-idempotent.

This commit is contained in:
jonathan 1996-11-18 05:18:04 +00:00
parent 7531efff40
commit 9f58a9278a
1 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: systm.h,v 1.61 1996/11/13 06:07:09 thorpej Exp $ */
/* $NetBSD: systm.h,v 1.62 1996/11/18 05:18:04 jonathan Exp $ */
/*-
* Copyright (c) 1982, 1988, 1991, 1993
@ -68,6 +68,9 @@
* patched by a stalking hacker.
*/
#ifndef _SYS_SYSTM_H_
#define _SYS_SYSTM_H_
struct proc;
struct uio;
struct tty;
@ -258,4 +261,6 @@ void kmstartup __P((void));
/* debugger entry points */
void Debugger __P((void)); /* in DDB only */
int read_symtab_from_file __P((struct proc *,struct vnode *,const char *));
#endif
#endif /* DDB */
#endif /* !_SYS_SYSTM_H_ */