diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-07-07 22:31:08 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-07-07 22:31:08 +0000 |
commit | 74aa9d7d2de50267fc7ddf9cf3940f027aa18f47 (patch) | |
tree | 69a09a9d2a01d5571eb51145c55313cc47519a03 /newlib/libc/include/stdbool.h | |
parent | a711a5af45a8ab064c766da2e50dd691ecb82460 (diff) | |
download | cygnal-74aa9d7d2de50267fc7ddf9cf3940f027aa18f47.tar.gz cygnal-74aa9d7d2de50267fc7ddf9cf3940f027aa18f47.tar.bz2 cygnal-74aa9d7d2de50267fc7ddf9cf3940f027aa18f47.zip |
2003-07-07 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/stdbool.h: Removed as this is defined by gcc.
Diffstat (limited to 'newlib/libc/include/stdbool.h')
-rw-r--r-- | newlib/libc/include/stdbool.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/newlib/libc/include/stdbool.h b/newlib/libc/include/stdbool.h deleted file mode 100644 index 291740ae9..000000000 --- a/newlib/libc/include/stdbool.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef _STDBOOL_H_ -#define _STDBOOL_H_ - -#ifndef __cplusplus - -#undef bool -#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) -#define bool _Bool -#else -#define bool unsigned char -#endif - -#undef false -#define false 0 -#undef true -#define true 1 - -#define __bool_true_false_are_defined 1 - -#endif /* !__cplusplus */ - -#endif /* _STDBOOL_H_ */ |