Update internal time library to allow user defined now function (#17576) iree/base/config.h allows the user to define IREE_TIME_NOW_FN. Reinstate the configurability after https://github.com/iree-org/iree/pull/17493
diff --git a/runtime/src/iree/base/internal/time.c b/runtime/src/iree/base/internal/time.c index 69cb9a5..c58911d 100644 --- a/runtime/src/iree/base/internal/time.c +++ b/runtime/src/iree/base/internal/time.c
@@ -8,6 +8,7 @@ #include <time.h> +#include "iree/base/config.h" #include "iree/base/target_platform.h" int64_t iree_platform_time_now(void) {