blob: a0292e41666daf9d8d5ce071d4e89beb2071cacd [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001From acbee4edacb80b5eeaff2480712fe98e56443997 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 19 Jan 2016 18:18:52 -0800
4Subject: [PATCH] include sys/types.h for mode_t
5
6mode_t is used in target.h, so we need to include sys/types.h to get the
7defintion
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11Upstream-Status: Pending
12
13 gdb/gdbserver/target.h | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/gdb/gdbserver/target.h b/gdb/gdbserver/target.h
17index 9a40867..aaecab9 100644
18--- a/gdb/gdbserver/target.h
19+++ b/gdb/gdbserver/target.h
20@@ -27,6 +27,7 @@
21 #include "target/waitstatus.h"
22 #include "mem-break.h"
23 #include "btrace-common.h"
24+#include <sys/types.h>
25
26 struct emit_ops;
27 struct buffer;
28--
292.7.0
30