aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-10-21 13:55:07 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-10-21 13:55:07 +0000
commit43378265bf2483278bc70b32c59c3e47ad5b7ef8 (patch)
tree696686d2434f358aff977ec13b7aee55dee1d15e /src
parentFix crash_report tool. (diff)
downloadbreakpad-43378265bf2483278bc70b32c59c3e47ad5b7ef8.tar.xz
Add asm/ptrace.h include to linux_dumper.cc to fix the silly scratchbox toolchain we're using for Maemo builds. Also shuffle around the include order to comply with style guidelines, while I'm here.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@718 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src')
-rw-r--r--src/client/linux/minidump_writer/linux_dumper.cc15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/client/linux/minidump_writer/linux_dumper.cc b/src/client/linux/minidump_writer/linux_dumper.cc
index 11b6a18b..578b788c 100644
--- a/src/client/linux/minidump_writer/linux_dumper.cc
+++ b/src/client/linux/minidump_writer/linux_dumper.cc
@@ -34,24 +34,23 @@
#include "client/linux/minidump_writer/linux_dumper.h"
+#include <asm/ptrace.h>
#include <assert.h>
-#include <limits.h>
-#include <stddef.h>
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-
-#include <unistd.h>
#include <elf.h>
#include <errno.h>
#include <fcntl.h>
+#include <limits.h>
#if !defined(__ANDROID__)
#include <link.h>
#endif
-
+#include <stddef.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
#include <sys/types.h>
#include <sys/ptrace.h>
#include <sys/wait.h>
+#include <unistd.h>
#include <algorithm>