[compiler-rt] fix missing include for `abort` in `FuzzedDataProvider.h` (PR #113872)
Petr Hosek via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 28 01:24:25 PDT 2024
================
@@ -13,6 +13,8 @@
#ifndef LLVM_FUZZER_FUZZED_DATA_PROVIDER_H_
#define LLVM_FUZZER_FUZZED_DATA_PROVIDER_H_
+#include <stdlib.h>
----------------
petrhosek wrote:
We should be using `cstdlib` instead, see the other `c*` header inclusions below.
https://github.com/llvm/llvm-project/pull/113872
More information about the llvm-commits
mailing list