Changeset 45c39ad in mainline
- Timestamp:
- 2018-06-27T16:57:59Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8dab988
- Parents:
- 6b96dc06
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/_bits/__noreturn.h
r6b96dc06 r45c39ad 46 46 #ifndef __noreturn 47 47 48 #if __cplusplus >= 201103L 49 #define __noreturn [[noreturn]] 50 #elif __STDC_VERSION__ >= 201112L 51 #define __noreturn _Noreturn 52 #elif (__GNUC__ >= 3) || (defined(__clang__) && __has_attribute(noreturn)) 48 #if (__GNUC__ >= 3) || (defined(__clang__) && __has_attribute(noreturn)) 53 49 #define __noreturn __attribute__((noreturn)) 54 50 #else
Note:
See TracChangeset
for help on using the changeset viewer.