commit | d8ca92cbff565514d249399226bd62583d73aacf | [log] [tgz] |
---|---|---|
author | Josh Gao <jmgao@google.com> | Mon Apr 25 17:04:56 2016 -0700 |
committer | Josh Gao <jmgao@google.com> | Mon Apr 25 18:45:39 2016 -0700 |
tree | 811c17965fb8bb93228b62a9d829078c1e0ea0b9 | |
parent | 23e29e3be03d5226544774e2a64c924bae82e07b [diff] [blame] |
Make <sys/user.h> compile on AArch64. Previously, AArch64 used uint64_t without including <stdint.h>. Bug: http://b/28178111 Change-Id: I8a497765d835f32b456f7eb925a6760e523163c4
diff --git a/libc/include/sys/user.h b/libc/include/sys/user.h index 3312981..13fecf9 100644 --- a/libc/include/sys/user.h +++ b/libc/include/sys/user.h
@@ -31,6 +31,7 @@ #include <sys/cdefs.h> #include <stddef.h> /* For size_t. */ +#include <stdint.h> __BEGIN_DECLS