2011-02-23 Ralf Corsépius <ralf.corsepius@rtems.org>

* libmisc/devnull/devnull.h, libmisc/stackchk/stackchk.h:
	Fix header guard. Add missing includes.
This commit is contained in:
Ralf Corsepius
2011-02-23 14:07:40 +00:00
parent c5e2f7c6f9
commit 7858b90e7c
3 changed files with 11 additions and 4 deletions
+2
View File
@@ -1,5 +1,7 @@
2011-02-23 Ralf Corsépius <ralf.corsepius@rtems.org>
* libmisc/devnull/devnull.h, libmisc/stackchk/stackchk.h:
Fix header guard. Add missing includes.
* score/include/rtems/debug.h, score/include/rtems/score/sysstate.h,
score/include/rtems/score/timespec.h,
score/inline/rtems/score/address.inl,
+4 -2
View File
@@ -14,8 +14,10 @@
* $Id$
*/
#ifndef __NULL_DRIVER_h
#define __NULL_DRIVER_h
#ifndef _RTEMS_DEVNULL_H
#define _RTEMS_DEVNULL_H
#include <rtems/io.h> /* rtems_device_driver */
#ifdef __cplusplus
extern "C" {
+5 -2
View File
@@ -15,9 +15,12 @@
* $Id$
*/
#ifndef __RTEMS_STACK_CHECKER_h
#define __RTEMS_STACK_CHECKER_h
#ifndef _RTEMS_STACKCHK_H
#define _RTEMS_STACKCHK_H
#include <stdbool.h> /* bool */
#include <rtems/score/percpu.h> /* Thread_Control */
#include <rtems/bspIo.h>
#ifdef __cplusplus