From 5c0830f62857bc00d1da386e3d204932f544a6ba Mon Sep 17 00:00:00 2001 From: Hexcoder Date: Sat, 13 Jul 2019 08:42:30 +0200 Subject: fix detection of glibc --- afl-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'afl-common.c') diff --git a/afl-common.c b/afl-common.c index ea3bfa6c..1c5e5bfe 100644 --- a/afl-common.c +++ b/afl-common.c @@ -18,7 +18,7 @@ void detect_file_args(char** argv, u8* prog_in) { u32 i = 0; -#ifdef __glibc__ +#ifdef __GLIBC__ u8* cwd = getcwd(NULL, 0); /* non portable glibc extension */ #else u8* cwd; -- cgit 1.4.1