freestanding-headers/stddef.h

52 lines
1.4 KiB
C
Raw Normal View History

2024-01-02 21:14:05 +03:00
/* Copyright (C) 2022-2024 mintsuki and contributors.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
2024-09-13 08:32:09 +03:00
#ifndef __FREESTND_C_HDRS_STDDEF_H
#define __FREESTND_C_HDRS_STDDEF_H 1
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
2024-09-09 12:52:37 +03:00
#if defined(__STDC_VERSION__) && __STDC_VERSION__ > 201710L
2023-03-23 05:57:33 +03:00
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
2022-02-15 07:46:37 +03:00
#undef NULL
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
#undef offsetof
2022-02-15 07:46:37 +03:00
#define offsetof(s, m) __builtin_offsetof(s, m)
2024-09-09 12:52:37 +03:00
#if defined(__STDC_VERSION__) && __STDC_VERSION__ > 201710L
# undef unreachable
2023-03-23 05:57:33 +03:00
# define unreachable() __builtin_unreachable()
2024-09-09 12:52:37 +03:00
# define __STDC_VERSION_STDDEF_H__ 202311L
2023-03-23 05:57:33 +03:00
#endif
2022-02-15 07:46:37 +03:00
#endif