From a9b3c47c8e4ceceff6d1ff1c88fcf3f26cecc150 Mon Sep 17 00:00:00 2001 From: Andrew Kryczka Date: Fri, 6 May 2016 18:32:54 -0700 Subject: [PATCH] Fix includes for clang on OS X Summary: Fix below error: use of undeclared identifier 'errno' Test Plan: doitlive Reviewers: IslamAbdelRahman, sdong Subscribers: andrewkr, dhruba, leveldb Differential Revision: https://reviews.facebook.net/D57849 --- util/env_chroot.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/env_chroot.cc b/util/env_chroot.cc index 1c589503c4..8f091506cf 100644 --- a/util/env_chroot.cc +++ b/util/env_chroot.cc @@ -7,6 +7,8 @@ #include "util/env_chroot.h" +#include +#include #include #include