about summary refs log tree commit diff
path: root/src/afl-performance.c
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2023-10-03 10:36:21 +0200
committerGitHub <noreply@github.com>2023-10-03 10:36:21 +0200
commitd09950f4bb98431576b872436f0fbf773ab895db (patch)
tree227f6d6086215f5091743d69d778f0e3c27b7a94 /src/afl-performance.c
parent1c582b6aeec034b2c0ef650abd35352df7d78fa7 (diff)
parent63100d2012038ce67bdf20b624c8c53afd4b99c7 (diff)
downloadafl++-d09950f4bb98431576b872436f0fbf773ab895db.tar.gz
Merge pull request #1880 from AFLplusplus/dev
push to stable
Diffstat (limited to 'src/afl-performance.c')
-rw-r--r--src/afl-performance.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/afl-performance.c b/src/afl-performance.c
index 04507410..07c1b527 100644
--- a/src/afl-performance.c
+++ b/src/afl-performance.c
@@ -1,24 +1,3 @@
-/*
-   Written in 2019 by David Blackman and Sebastiano Vigna (vigna@acm.org)
-
-   To the extent possible under law, the author has dedicated all copyright
-   and related and neighboring rights to this software to the public domain
-   worldwide. This software is distributed without any warranty.
-
-   See <https://creativecommons.org/publicdomain/zero/1.0/>.
-
-   This is xoshiro256++ 1.0, one of our all-purpose, rock-solid generators.
-   It has excellent (sub-ns) speed, a state (256 bits) that is large
-   enough for any parallel application, and it passes all tests we are
-   aware of.
-
-   For generating just floating-point numbers, xoshiro256+ is even faster.
-
-   The state must be seeded so that it is not everywhere zero. If you have
-   a 64-bit seed, we suggest to seed a splitmix64 generator and use its
-   output to fill s[].
-*/
-
 #include <stdint.h>
 #include "afl-fuzz.h"
 #include "types.h"