diff options
author | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2008-02-24 21:04:51 +0000 |
---|---|---|
committer | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2008-02-24 21:04:51 +0000 |
commit | 2c2ae2854198ca20c48e62c05816fbaacdd474c7 (patch) | |
tree | 2ab4bbf0a7ec554b9e756157b5d04408509c82ed /src/common/linux | |
parent | Use swprintf_s for VC8 or newer. r=mento (diff) | |
download | breakpad-2c2ae2854198ca20c48e62c05816fbaacdd474c7.tar.xz |
issue 238 - missing includes compiling with gcc 4.3. patch by taras glek, r=me
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@240 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/linux')
-rw-r--r-- | src/common/linux/dump_symbols.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/linux/dump_symbols.cc b/src/common/linux/dump_symbols.cc index 1af940d6..b523c5d8 100644 --- a/src/common/linux/dump_symbols.cc +++ b/src/common/linux/dump_symbols.cc @@ -40,9 +40,11 @@ #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> +#include <algorithm> #include <functional> #include <vector> +#include <string.h> #include "common/linux/dump_symbols.h" #include "common/linux/file_id.h" |