Wrap some declarations with #ifdef _KERNEL and #ifndef _LOCORE .

This commit is contained in:
tsutsui 2001-09-16 03:20:01 +00:00
parent d052707e74
commit 831524d3c1
1 changed files with 5 additions and 1 deletions

View File

@ -1,13 +1,17 @@
/* $NetBSD: cpu.h,v 1.12 2001/09/04 06:23:17 simonb Exp $ */
/* $NetBSD: cpu.h,v 1.13 2001/09/16 03:20:01 tsutsui Exp $ */
#ifndef _NEWSMIPS_CPU_H_
#define _NEWSMIPS_CPU_H_
#include <mips/cpu.h>
#ifdef _KERNEL
#ifndef _LOCORE
extern int systype;
#define NEWS3400 1
#define NEWS5000 2
#endif
#endif
#endif /* _NEWSMIPS_CPU_H_ */