2002-03-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* cpuModel.h: PR 146.
	Adding guards. Remove unnecessary headers.
This commit is contained in:
Joel Sherrill
2002-03-20 14:12:33 +00:00
parent 293c0e30f8
commit 5cf3f4169c
2 changed files with 11 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2002-03-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* cpuModel.h: PR 146.
Adding guards. Remove unnecessary headers.
2002-01-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2002-01-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* i386/displayCpu.c: Include rtems/bspIo.h instead of bspIo.h. * i386/displayCpu.c: Include rtems/bspIo.h instead of bspIo.h.

View File

@@ -13,14 +13,14 @@
* $Id$ * $Id$
*/ */
#ifndef libcpu_cpuModel_h
#define libcpu_cpuModel_h
/* /*
* Tell us the machine setup.. * Tell us the machine setup..
*/ */
#include <stdio.h>
#include <libcpu/cpu.h>
#include <string.h>
extern char hard_math; /* flotting point coprocessor present indicator */ extern char hard_math; /* floating point coprocessor present indicator */
extern char x86; /* type of cpu (3 = 386, 4 =486, ...) */ extern char x86; /* type of cpu (3 = 386, 4 =486, ...) */
extern char x86_model; extern char x86_model;
extern char x86_mask; extern char x86_mask;
@@ -30,3 +30,5 @@ extern int have_cpuid;
extern unsigned char Cx86_step; /* cyrix processor identification */ extern unsigned char Cx86_step; /* cyrix processor identification */
extern void printCpuInfo(); /* Display this information on console in ascii form */ extern void printCpuInfo(); /* Display this information on console in ascii form */
#endif