From 7858b90e7c22651e7087e557b65e21ddc39d541e Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 23 Feb 2011 14:07:40 +0000 Subject: [PATCH] =?UTF-8?q?2011-02-23=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libmisc/devnull/devnull.h, libmisc/stackchk/stackchk.h: Fix header guard. Add missing includes. --- cpukit/ChangeLog | 2 ++ cpukit/libmisc/devnull/devnull.h | 6 ++++-- cpukit/libmisc/stackchk/stackchk.h | 7 +++++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index cf9fa863d0..990095559e 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,5 +1,7 @@ 2011-02-23 Ralf Corsépius + * 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, diff --git a/cpukit/libmisc/devnull/devnull.h b/cpukit/libmisc/devnull/devnull.h index 6fdf3b6850..4fe90cde6c 100644 --- a/cpukit/libmisc/devnull/devnull.h +++ b/cpukit/libmisc/devnull/devnull.h @@ -14,8 +14,10 @@ * $Id$ */ -#ifndef __NULL_DRIVER_h -#define __NULL_DRIVER_h +#ifndef _RTEMS_DEVNULL_H +#define _RTEMS_DEVNULL_H + +#include /* rtems_device_driver */ #ifdef __cplusplus extern "C" { diff --git a/cpukit/libmisc/stackchk/stackchk.h b/cpukit/libmisc/stackchk/stackchk.h index bd8c284417..02bbac3a45 100644 --- a/cpukit/libmisc/stackchk/stackchk.h +++ b/cpukit/libmisc/stackchk/stackchk.h @@ -15,9 +15,12 @@ * $Id$ */ -#ifndef __RTEMS_STACK_CHECKER_h -#define __RTEMS_STACK_CHECKER_h +#ifndef _RTEMS_STACKCHK_H +#define _RTEMS_STACKCHK_H +#include /* bool */ + +#include /* Thread_Control */ #include #ifdef __cplusplus