From: Kostya Serebryany Date: Sat, 28 Jan 2017 18:56:05 +0000 (+0000) Subject: [libfuzzer] include errno.h. On Ubuntu 14.04 we got away w/o it, but other systems... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dec0b05633128d94f288c117a3dfaa11d7854a81;p=llvm [libfuzzer] include errno.h. On Ubuntu 14.04 we got away w/o it, but other systems seem to require it git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293389 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Fuzzer/FuzzerShmemPosix.cpp b/lib/Fuzzer/FuzzerShmemPosix.cpp index d5f4aabc426..c87407bb1d6 100644 --- a/lib/Fuzzer/FuzzerShmemPosix.cpp +++ b/lib/Fuzzer/FuzzerShmemPosix.cpp @@ -16,6 +16,7 @@ #include #include +#include #include #include #include