mirror of
https://gitlab.isc.org/isc-projects/kea.git
synced 2025-12-20 00:53:34 +08: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;
|
|
}
|
|
}
|