Skip to content

Commit 9f69da3

Browse files
authored
[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.
1 parent 474234a commit 9f69da3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

compiler-rt/include/fuzzer/FuzzedDataProvider.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <climits>
1919
#include <cstddef>
2020
#include <cstdint>
21+
#include <cstdlib>
2122
#include <cstring>
2223
#include <initializer_list>
2324
#include <limits>

0 commit comments

Comments
 (0)