aboutsummaryrefslogtreecommitdiff
path: root/AT91SAM7S256/SAM7S256/Include/stdbool.h
diff options
context:
space:
mode:
authorNicolas Schodet2023-03-06 17:11:21 +0100
committerNicolas Schodet2023-03-06 17:15:07 +0100
commitf013e6c23adb9d068f1ee5a372f9454e5db09797 (patch)
tree8b71d25d6fa0a217bb91bb0347ea051c987d457b /AT91SAM7S256/SAM7S256/Include/stdbool.h
parent391a0d987af64721ad2d8487b60e1c15af0083ff (diff)
Remove unused IAR only files
Building with IAR is no longer supported.
Diffstat (limited to 'AT91SAM7S256/SAM7S256/Include/stdbool.h')
-rw-r--r--AT91SAM7S256/SAM7S256/Include/stdbool.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/AT91SAM7S256/SAM7S256/Include/stdbool.h b/AT91SAM7S256/SAM7S256/Include/stdbool.h
deleted file mode 100644
index 3eabc38..0000000
--- a/AT91SAM7S256/SAM7S256/Include/stdbool.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/* 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 "<stdbool.h> 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 */