IWYU: errno.h in base/logging.h
Without this, some toolchains may fail to build base/checks.cc
because errno is undefined.
NOTRY=true
Review-Url: https://codereview.webrtc.org/1971513002
Cr-Commit-Position: refs/heads/master@{#12696}
diff --git a/webrtc/base/logging.h b/webrtc/base/logging.h
index 802dfa7..631c638 100644
--- a/webrtc/base/logging.h
+++ b/webrtc/base/logging.h
@@ -46,6 +46,8 @@
#ifndef WEBRTC_BASE_LOGGING_H_
#define WEBRTC_BASE_LOGGING_H_
+#include <errno.h>
+
#include <list>
#include <sstream>
#include <string>