diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-13 23:22:00 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-13 23:22:00 +0000 |
commit | 87468857f685863cd763ae361c2cb3be0ee53a68 (patch) | |
tree | a8fec29d731170b2a36b27d18e2d9720c970bf57 /include/platform.h | |
parent | f7fcca4af7593218f2185e69715ab3ae16c6cf29 (diff) | |
download | busybox-w32-87468857f685863cd763ae361c2cb3be0ee53a68.tar.gz busybox-w32-87468857f685863cd763ae361c2cb3be0ee53a68.tar.bz2 busybox-w32-87468857f685863cd763ae361c2cb3be0ee53a68.zip |
style fixes
Diffstat (limited to 'include/platform.h')
-rw-r--r-- | include/platform.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/platform.h b/include/platform.h index 4ed5fe624..0adbed4e7 100644 --- a/include/platform.h +++ b/include/platform.h | |||
@@ -173,13 +173,13 @@ __extension__ typedef unsigned long long __u64; | |||
173 | #else | 173 | #else |
174 | /* Largest integral types. */ | 174 | /* Largest integral types. */ |
175 | #if __BIG_ENDIAN__ | 175 | #if __BIG_ENDIAN__ |
176 | typedef long int intmax_t; | 176 | typedef long intmax_t; |
177 | typedef unsigned long int uintmax_t; | 177 | typedef unsigned long uintmax_t; |
178 | #else | 178 | #else |
179 | __extension__ | 179 | __extension__ |
180 | typedef long long int intmax_t; | 180 | typedef long long intmax_t; |
181 | __extension__ | 181 | __extension__ |
182 | typedef unsigned long long int uintmax_t; | 182 | typedef unsigned long long uintmax_t; |
183 | #endif | 183 | #endif |
184 | #endif | 184 | #endif |
185 | 185 | ||