Skip to content

Commit

Permalink
[NFC][compiler-rt] Add missing header include (#113951)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Prabhuk authored Oct 28, 2024
1 parent 474234a commit 9f69da3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions compiler-rt/include/fuzzer/FuzzedDataProvider.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <climits>
#include <cstddef>
#include <cstdint>
#include <cstdlib>
#include <cstring>
#include <initializer_list>
#include <limits>
Expand Down

0 comments on commit 9f69da3

Please sign in to comment.