[flang] Fix build on FreeBSD (need size_t)

Add #include <cstddef> to time-intrinsic.h so std::size_t is
guaranteed to be available.
This commit is contained in:
peter klausler 2021-10-12 11:50:26 -07:00
parent 04d76d3694
commit f7858e7582
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@
#include "flang/Runtime/entry-names.h"
#include <cinttypes>
#include <cstddef>
namespace Fortran::runtime {