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;