diff options
author | Elliott Hughes <enh@google.com> | 2013-11-26 18:01:29 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2013-11-26 18:01:29 -0800 |
commit | 9e7d2180c7ac60d4bec1c7a91f52dc765b39814c (patch) | |
tree | 58b0756330adb19721f52c64f28d320fc5725522 /debuggerd | |
parent | b240697339b1ff1f45217a48dc9d3fa8a2f21a2b (diff) | |
download | system_core-9e7d2180c7ac60d4bec1c7a91f52dc765b39814c.zip system_core-9e7d2180c7ac60d4bec1c7a91f52dc765b39814c.tar.gz system_core-9e7d2180c7ac60d4bec1c7a91f52dc765b39814c.tar.bz2 |
Switch ARM debuggerd over to <sys/user.h>.
Change-Id: I106d4e80a2e819f1d47ca81893340f567bb8b4d9
Diffstat (limited to 'debuggerd')
-rw-r--r-- | debuggerd/arm/machine.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/debuggerd/arm/machine.c b/debuggerd/arm/machine.c index 6bcd07e..4ab6026 100644 --- a/debuggerd/arm/machine.c +++ b/debuggerd/arm/machine.c @@ -15,18 +15,15 @@ ** limitations under the License. */ -#include <stddef.h> +#include <errno.h> #include <stdbool.h> +#include <stddef.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> -#include <stdio.h> -#include <errno.h> -#include <sys/types.h> #include <sys/ptrace.h> - -#include <corkscrew/ptrace.h> - -#include <linux/user.h> +#include <sys/types.h> +#include <sys/user.h> #include "../utility.h" #include "../machine.h" |