stddef.h: Changes for C++

This commit is contained in:
mintsuki 2023-03-15 21:20:25 +01:00
parent f2abb8f7b7
commit 1b0f0ce419

View File

@ -3,13 +3,20 @@
typedef __SIZE_TYPE__ size_t; typedef __SIZE_TYPE__ size_t;
typedef __PTRDIFF_TYPE__ ptrdiff_t; typedef __PTRDIFF_TYPE__ ptrdiff_t;
#ifndef __cplusplus
typedef __WCHAR_TYPE__ wchar_t; typedef __WCHAR_TYPE__ wchar_t;
#endif
#ifdef NULL #ifdef NULL
#undef NULL #undef NULL
#endif #endif
#define NULL ((void *)0) #ifndef __cplusplus
# define NULL ((void *)0)
#else
# define NULL 0
#endif
#define offsetof(s, m) __builtin_offsetof(s, m) #define offsetof(s, m) __builtin_offsetof(s, m)