[builtins] Fix build after D95537 due to missing size_t

Strangely int_lib.h only includes stdint.h and not stddef.h, so we need
to include the latter to be able to use size_t here.
This commit is contained in:
Jessica Clarke 2021-01-27 19:44:01 +00:00
parent 5748a71ba3
commit e47a388bd6

View File

@ -7,6 +7,7 @@
//===----------------------------------------------------------------------===//
#include "int_lib.h"
#include <stddef.h>
#include <unwind.h>
#if defined(__arm__) && !defined(__ARM_DWARF_EH__) && \