bootloader requires systype values so change

#ifdef _KERNEL -> #if defined(_KERNEL) || defined(_STANDALONE)
This commit is contained in:
tsutsui 2001-09-20 12:29:48 +00:00
parent 9fc0329619
commit ffe6ce9037
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
/* $NetBSD: cpu.h,v 1.13 2001/09/16 03:20:01 tsutsui Exp $ */
/* $NetBSD: cpu.h,v 1.14 2001/09/20 12:29:48 tsutsui Exp $ */
#ifndef _NEWSMIPS_CPU_H_
#define _NEWSMIPS_CPU_H_
#include <mips/cpu.h>
#ifdef _KERNEL
#if defined(_KERNEL) || defined(_STANDALONE)
#ifndef _LOCORE
extern int systype;