From 9f69da35e2e5438d0c042f76277fff397f6a1505 Mon Sep 17 00:00:00 2001 From: Prabhuk Date: Mon, 28 Oct 2024 15:24:47 -0700 Subject: [PATCH] [NFC][compiler-rt] Add missing header include (#113951) Include `cstdlib` which was originally included transitively but the changes to `vector` in libcpp breaks new builds due to missing cstdlib header for `abort()` function call. --- compiler-rt/include/fuzzer/FuzzedDataProvider.h | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/include/fuzzer/FuzzedDataProvider.h b/compiler-rt/include/fuzzer/FuzzedDataProvider.h index 5903ed837917ca..e57b95b6304a9a 100644 --- a/compiler-rt/include/fuzzer/FuzzedDataProvider.h +++ b/compiler-rt/include/fuzzer/FuzzedDataProvider.h @@ -18,6 +18,7 @@ #include #include #include +#include #include #include #include