mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
b9687a1cc3
llvm-svn: 260798
21 lines
589 B
C++
21 lines
589 B
C++
//===- FuzzerInterface.cpp - Mutate a test input --------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// Parts of public interface for libFuzzer.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
#include "FuzzerInterface.h"
|
|
#include "FuzzerInternal.h"
|
|
#include <random>
|
|
|
|
namespace fuzzer {
|
|
|
|
|
|
} // namespace fuzzer.
|