mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 20:28:08 +00:00
nits
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user