2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>

* cpu.c, cpu_asm.S, sse_test.c: Add include of config.h
This commit is contained in:
Joel Sherrill
2010-03-27 15:01:47 +00:00
parent 0acc9af342
commit 199041aa0e
4 changed files with 17 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2010-03-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c, cpu_asm.S, sse_test.c: Add include of config.h
2009-11-09 Till Straumann <strauman@slac.stanford.edu>
PR 1469/cpukit

View File

@@ -12,6 +12,10 @@
* $Id$
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include <rtems/system.h>
#include <rtems/score/types.h>

View File

@@ -13,6 +13,10 @@
* $Id$
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems/asm.h>
#include <rtems/score/cpu.h>

View File

@@ -92,13 +92,16 @@
* c) IRQ (software IRQ via 'INT xx' instruction)
*
*/
#ifdef __rtems__
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef __rtems__
#include <rtems.h>
#include <rtems/score/cpu.h>
#include <rtems/irq.h>
#include <rtems/error.h>
#endif
#include <inttypes.h>