diff options
author | thestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-09-24 21:51:09 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-09-24 21:51:09 +0000 |
commit | 8d1130a89e7cdffbc0cf40230c75a9d605176377 (patch) | |
tree | b13322f5f1bdf1b56a220f6f3176b1149baec1ca /src/client | |
parent | Write a window of memory around the instruction pointer from the crashing thr... (diff) | |
download | breakpad-8d1130a89e7cdffbc0cf40230c75a9d605176377.tar.xz |
Only include linux_syscall_support.h on Linux in cross platform files.
TBR=nealsid
Review URL: http://breakpad.appspot.com/204001
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@700 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/minidump_file_writer.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/minidump_file_writer.cc b/src/client/minidump_file_writer.cc index 42c3946d..db304662 100644 --- a/src/client/minidump_file_writer.cc +++ b/src/client/minidump_file_writer.cc @@ -40,7 +40,9 @@ #include "client/minidump_file_writer-inl.h" #include "common/linux/linux_libc_support.h" #include "common/string_conversion.h" +#if __linux__ #include "third_party/lss/linux_syscall_support.h" +#endif namespace google_breakpad { |