[libc++] Add missing <stddef.h> include to <wchar.h>

It is needed because <wchar.h> uses size_t.
This commit is contained in:
Louis Dionne 2020-06-25 19:27:32 -04:00
parent c7eb06a880
commit 8808574e74

View File

@ -106,6 +106,7 @@ size_t wcsrtombs(char* restrict dst, const wchar_t** restrict src, size_t len,
*/
#include <__config>
#include <stddef.h>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#pragma GCC system_header