2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 18:08:16 +00:00
kea/compiler-checks/fuzzing-with-clusterfuzzlite.cc
2025-04-26 22:26:08 +03:00

10 lines
176 B
C++

#include <cstdlib>
int main() {
if (getenv("CIFUZZ") && getenv("FUZZING_ENGINE") && getenv("FUZZING_LANGUAGE")) {
return 0;
} else {
return 1;
}
}