feat(headers): stddef/stdint/stdbool/limits/float/assert + features wiring
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#ifndef VLIBC_STDNORETURN_H
|
||||
#define VLIBC_STDNORETURN_H
|
||||
|
||||
/*
|
||||
* vlibc — <stdnoreturn.h>.
|
||||
*
|
||||
* In C23 noreturn is a keyword, so this header has nothing left to define.
|
||||
* In C17 (and older) it maps noreturn onto the _Noreturn function specifier.
|
||||
* In C++ [[noreturn]] is an attribute, not a macro, so nothing is defined
|
||||
* there either.
|
||||
*
|
||||
* This header is ISO C core and is present in every profile.
|
||||
*/
|
||||
|
||||
#include <vlibc/features.h>
|
||||
|
||||
#ifndef __cplusplus
|
||||
#if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 202311L
|
||||
#define noreturn _Noreturn
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* VLIBC_STDNORETURN_H */
|
||||
Reference in New Issue
Block a user