[libc] math fuzzing MPFR include statement (#102358)

Updated the include statement for MPFR
This commit is contained in:
RoseZhang03
2024-08-07 21:12:40 +00:00
committed by GitHub
parent 6a3604ef85
commit 2d95dee0c0
3 changed files with 3 additions and 3 deletions

View File

@@ -11,8 +11,8 @@
//===----------------------------------------------------------------------===//
#include "src/math/cos.h"
#include "utils/MPFRWrapper/mpfr_inc.h"
#include <math.h>
#include <mpfr.h>
extern "C" int LLVMFuzzerTestOneInput(const double x) {
// remove NaN and inf as preconditions

View File

@@ -11,8 +11,8 @@
//===----------------------------------------------------------------------===//
#include "src/math/sin.h"
#include "utils/MPFRWrapper/mpfr_inc.h"
#include <math.h>
#include <mpfr.h>
extern "C" int LLVMFuzzerTestOneInput(const double x) {
// remove NaN and inf as preconditions

View File

@@ -11,8 +11,8 @@
//===----------------------------------------------------------------------===//
#include "src/math/tan.h"
#include "utils/MPFRWrapper/mpfr_inc.h"
#include <math.h>
#include <mpfr.h>
extern "C" int LLVMFuzzerTestOneInput(const double x) {
// remove NaN and inf as preconditions