From d3ec6f1adb389de1a5d9159f56ccce225a17c363 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Sun, 3 Dec 2017 23:25:59 +0100 Subject: [PATCH] Add missing errno.h include to bio_test.cc This fixes compilation on aarch64 and other architectures for Android. Change-Id: I0b09ab06858c92d07e2376e244a4626a6af5037b Reviewed-on: https://boringssl-review.googlesource.com/23764 Reviewed-by: Adam Langley Commit-Queue: Adam Langley CQ-Verified: CQ bot account: commit-bot@chromium.org --- crypto/bio/bio_test.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/bio/bio_test.cc b/crypto/bio/bio_test.cc index eb54f7e1..8479c8e8 100644 --- a/crypto/bio/bio_test.cc +++ b/crypto/bio/bio_test.cc @@ -27,6 +27,7 @@ #if !defined(OPENSSL_WINDOWS) #include +#include #include #include #include