From 313eb5bb780f9e9baa353651996b51ce33a85fca Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 14 Dec 2009 21:15:18 +0000 Subject: Switching to C99 stdbool.h types git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2339 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/sched/wd_internal.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'nuttx/sched/wd_internal.h') diff --git a/nuttx/sched/wd_internal.h b/nuttx/sched/wd_internal.h index 2a64d9eaf..4df2a0e65 100644 --- a/nuttx/sched/wd_internal.h +++ b/nuttx/sched/wd_internal.h @@ -43,11 +43,12 @@ #include #include +#include #include #include /************************************************************************ - * Definitions + * Pre-processor Definitions ************************************************************************/ /************************************************************************ @@ -66,7 +67,7 @@ struct wdog_s FAR void *picbase; /* PIC base address */ #endif int lag; /* Timer associated with the delay */ - boolean active; /* TRUE if the watchdog is actively timing */ + bool active; /* true if the watchdog is actively timing */ uint8_t argc; /* The number of parameters to pass */ uint32_t parm[CONFIG_MAX_WDOGPARMS]; }; -- cgit v1.2.3