diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-09-06 16:18:01 +0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-09-13 10:07:03 -0700 |
commit | 595d7eeae698d985ea2da9d3b98d27af9e035f6c (patch) | |
tree | bc6557125f58c9a585eb907764224baab6182b7d /system/include/libc/sys | |
parent | b9c8b95795849264c58be7d1496da3c4078df96c (diff) |
Change various 64 bit typedefs over to 32 bit.
This also removes all of the changes that were needed for those
typedefs to be 64 bit.
Diffstat (limited to 'system/include/libc/sys')
-rw-r--r-- | system/include/libc/sys/resource.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/include/libc/sys/resource.h b/system/include/libc/sys/resource.h index 0cfbcf44..22ff2f3b 100644 --- a/system/include/libc/sys/resource.h +++ b/system/include/libc/sys/resource.h @@ -16,7 +16,7 @@ extern "C" { #include <bits/alltypes.h> -typedef unsigned long long rlim_t; +typedef unsigned long rlim_t; struct rlimit { |