From 2420edb02ee04fc1b7dc39e7d5e17f98e3e3a24b Mon Sep 17 00:00:00 2001 From: Zach Riggle Date: Mon, 26 Jun 2017 08:32:38 -0500 Subject: Port console to Darwin (#253) * Port console to Darwin * Get syz-executor to build correctly * Do not export unix and syscall constants * Add presubmit test * Add myself to contributors --- executor/common.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'executor') diff --git a/executor/common.h b/executor/common.h index 8ced8313b..e1cc3385e 100644 --- a/executor/common.h +++ b/executor/common.h @@ -509,6 +509,7 @@ static void flush_tun() #endif #if defined(SYZ_EXECUTOR) || (defined(__NR_syz_extract_tcp_res) && defined(SYZ_TUN_ENABLE)) +#ifndef __ANDROID__ // Can't include , since it causes // conflicts due to some structs redefinition. struct ipv6hdr { @@ -523,6 +524,7 @@ struct ipv6hdr { struct in6_addr saddr; struct in6_addr daddr; }; +#endif struct tcp_resources { int32_t seq; -- cgit mrf-deployment