freestanding-headers/stddef.h

46 lines
930 B
C
Raw Normal View History

2023-04-16 08:24:29 +03:00
#if !defined(__FSTD_HDRS_STDDEF_H) || defined(__FSTD_HDRS_CXX_WRAP)
#if !defined(__FSTD_HDRS_CXX_WRAP)
#define __FSTD_HDRS_STDDEF_H 1
2023-03-16 01:08:11 +03:00
#endif
2022-02-15 07:46:37 +03:00
typedef __SIZE_TYPE__ size_t;
typedef __PTRDIFF_TYPE__ ptrdiff_t;
2023-03-15 23:20:25 +03:00
#ifndef __cplusplus
2022-02-15 07:46:37 +03:00
typedef __WCHAR_TYPE__ wchar_t;
2023-03-23 05:57:33 +03:00
/* XXX fix to use proper __STDC_VERSION__ number later on */
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 202000L)
typedef typeof(nullptr) nullptr_t;
#endif
2023-03-15 23:20:25 +03:00
#endif
2022-02-15 07:46:37 +03:00
2023-03-16 00:50:24 +03:00
#ifdef __cplusplus
typedef decltype(nullptr) nullptr_t;
#endif
2023-04-16 08:24:29 +03:00
#ifndef __FSTD_HDRS_STDDEF_H_MACROS
#define __FSTD_HDRS_STDDEF_H_MACROS 1
2023-03-16 00:50:24 +03:00
2022-02-15 07:46:37 +03:00
#ifdef NULL
#undef NULL
#endif
2023-03-15 23:20:25 +03:00
#ifndef __cplusplus
# define NULL ((void *)0)
#else
# define NULL 0
#endif
2022-02-15 07:46:37 +03:00
#define offsetof(s, m) __builtin_offsetof(s, m)
2023-03-23 05:57:33 +03:00
/* XXX fix to use proper __STDC_VERSION__ number later on */
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 202000L)
# define unreachable() __builtin_unreachable()
#endif
2022-02-15 07:46:37 +03:00
#endif
2023-03-16 00:50:24 +03:00
#endif