From 4ca66d691e1334231e57c069f4683d1a4d2d48f2 Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Wed, 10 Sep 2014 03:24:36 +0000 Subject: [PATCH] include cstdlib for free() and abort() This previous CL added uses of free() and abort() without including cstdlib: https://webrtc-codereview.appspot.com/22449004 R=andrew@webrtc.org Review URL: https://webrtc-codereview.appspot.com/23559004 Patch from Mostyn Bramley-Moore . git-svn-id: http://webrtc.googlecode.com/svn/trunk@7127 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/base/checks.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webrtc/base/checks.cc b/webrtc/base/checks.cc index 9694b93d88..b85af1ed17 100644 --- a/webrtc/base/checks.cc +++ b/webrtc/base/checks.cc @@ -12,8 +12,9 @@ // src/base/logging.cc. // Use the C++ version to provide __GLIBCXX__. -#include #include +#include +#include #if defined(__GLIBCXX__) && !defined(__UCLIBC__) #include