From 495cc1df494505378977995eeb76b05f20f0b235 Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Sun, 13 Jun 2010 17:49:42 +0200 Subject: import firmware from LEGO v1.29 --- AT91SAM7S256/SAM7S256/Include/stdbool.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 AT91SAM7S256/SAM7S256/Include/stdbool.h (limited to 'AT91SAM7S256/SAM7S256/Include/stdbool.h') diff --git a/AT91SAM7S256/SAM7S256/Include/stdbool.h b/AT91SAM7S256/SAM7S256/Include/stdbool.h new file mode 100644 index 0000000..3eabc38 --- /dev/null +++ b/AT91SAM7S256/SAM7S256/Include/stdbool.h @@ -0,0 +1,28 @@ +/* stdbool.h header */ +/* Copyright (C) 2003 IAR Systems. All rights reserved. */ + +/* NOTE: IAR Extensions must be enabled in order to use the bool type! */ + +#ifndef _STDBOOL +#define _STDBOOL + +#ifndef _SYSTEM_BUILD +#pragma system_include +#endif + + +#ifndef __C99_BOOL__ + #error " compiled with wrong (version of IAR) compiler" +#endif + +#ifndef __cplusplus + +#define bool _Bool +#define true 1 +#define false 0 + +#endif /* !__cplusplus */ + +#define __bool_true_false_are_defined 1 + +#endif /* !_STDBOOL */ -- cgit v1.2.3