commit | 135b103fd9ac404e9499fe40c725c33f34f86af7 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Tue May 13 18:42:12 2014 -0700 |
committer | Elliott Hughes <enh@google.com> | Tue May 13 18:42:12 2014 -0700 |
tree | 4fa53e4a7cb7176a4e5d23d3e2f7655dc006c38b | |
parent | 17f8ef87b565d88c3b391d6d8de8818dec74c4d5 [diff] |
Fix <sys/endian.h> uint32_t build failures. Change-Id: I833b51318f0bf7749073859b7ffacc668c27558e
diff --git a/libc/include/sys/endian.h b/libc/include/sys/endian.h index 1186540..be4c905 100644 --- a/libc/include/sys/endian.h +++ b/libc/include/sys/endian.h
@@ -39,6 +39,8 @@ #include <sys/cdefs.h> #include <machine/endian.h> +#include <stdint.h> + #define _LITTLE_ENDIAN 1234 #define _BIG_ENDIAN 4321 #define _PDP_ENDIAN 3412