commit | 9c67d4307c6be91618a75f0255e701fc69f3b55f | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Thu Nov 21 08:55:46 2013 -0800 |
committer | Elliott Hughes <enh@google.com> | Thu Nov 21 08:55:46 2013 -0800 |
tree | b236872b0e3ca0107e1e0466b5131354e2384d3a | |
parent | ca045a19234a9323ea0e7eccbe3aefd74f9c1bab [diff] |
Fix useconds_t for LP64. Change-Id: I869e60484999c1feda3dcdb86bee5b5373e6b3df
diff --git a/libc/include/sys/types.h b/libc/include/sys/types.h index d793f81..978393c 100644 --- a/libc/include/sys/types.h +++ b/libc/include/sys/types.h
@@ -98,7 +98,7 @@ typedef __kernel_time_t time_t; typedef __kernel_suseconds_t suseconds_t; -typedef unsigned long useconds_t; +typedef unsigned int useconds_t; typedef __kernel_daddr_t daddr_t; typedef __kernel_timer_t timer_t;