summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--breakpad/linux/exception_handler.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/breakpad/linux/exception_handler.cc b/breakpad/linux/exception_handler.cc
index bbc6910..f2e28f2 100644
--- a/breakpad/linux/exception_handler.cc
+++ b/breakpad/linux/exception_handler.cc
@@ -65,17 +65,18 @@
#include "breakpad/linux/exception_handler.h"
-#include <unistd.h>
-#include <fcntl.h>
-#include <sys/mman.h>
#include <errno.h>
+#include <fcntl.h>
+#include <linux/limits.h>
+#include <sched.h>
#include <signal.h>
+#include <sys/mman.h>
#include <sys/signal.h>
+#include <sys/syscall.h>
#include <sys/ucontext.h>
#include <sys/user.h>
-#include <sys/syscall.h>
#include <sys/wait.h>
-#include <sched.h>
+#include <unistd.h>
#include "breakpad/linux/linux_syscall_support.h"
#include "breakpad/linux/memory.h"