Add missing #include <cerrno> in string_to_number.cc

One of our toolchains does not expose |errno| in the global namespace.

BUG=none

Review-Url: https://codereview.webrtc.org/2926273002
Cr-Commit-Position: refs/heads/master@{#18506}
This commit is contained in:
hugoh 2017-06-08 16:38:40 -07:00 committed by Commit Bot
parent 46537a3879
commit 6baee78bc9

View File

@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include <cerrno>
#include <cstdlib> #include <cstdlib>
#include "webrtc/base/string_to_number.h" #include "webrtc/base/string_to_number.h"