This commit is contained in:
vanhauser-thc
2022-06-20 17:59:14 +02:00
parent 5ed993d74e
commit 1a4c0d2ecd
3 changed files with 9 additions and 4 deletions

View File

@ -25,8 +25,12 @@
#include <stdlib.h>
#include <stdio.h>
#define _GNU_SOURCE
#define __USE_GNU
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#ifndef __USE_GNU
#define __USE_GNU
#endif
#include <string.h>
#include <strings.h>
#include <math.h>
@ -718,7 +722,7 @@ char *get_afl_env(char *env) {
if ((val = getenv(env))) {
if (*val) {
if (!be_quiet) {
OKF("Enabled environment variable %s with value %s", env, val);