mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 18:08:16 +00:00
10 lines
176 B
C++
10 lines
176 B
C++
#include <cstdlib>
|
|
|
|
int main() {
|
|
if (getenv("CIFUZZ") && getenv("FUZZING_ENGINE") && getenv("FUZZING_LANGUAGE")) {
|
|
return 0;
|
|
} else {
|
|
return 1;
|
|
}
|
|
}
|