Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-14 03:22:00 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-14 03:22:00 +0400
commit87468857f685863cd763ae361c2cb3be0ee53a68 (patch)
treea8fec29d731170b2a36b27d18e2d9720c970bf57 /include/platform.h
parentf7fcca4af7593218f2185e69715ab3ae16c6cf29 (diff)
style fixes
Diffstat (limited to 'include/platform.h')
-rw-r--r--include/platform.h8
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;
#else
/* Largest integral types. */
#if __BIG_ENDIAN__
-typedef long int intmax_t;
-typedef unsigned long int uintmax_t;
+typedef long intmax_t;
+typedef unsigned long uintmax_t;
#else
__extension__
-typedef long long int intmax_t;
+typedef long long intmax_t;
__extension__
-typedef unsigned long long int uintmax_t;
+typedef unsigned long long uintmax_t;
#endif
#endif