diff options
author | pkj <pkj@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-18 10:26:07 +0000 |
---|---|---|
committer | pkj <pkj@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-18 10:26:07 +0000 |
commit | 7a65fd536c6d9c7a7c99384510f5398f722e62e7 (patch) | |
tree | c5fb5b5a9d0799c48bf890dbeaf212b791c31273 | |
parent | 5c28433635d4aad88a4eed42a53f6dc0ca3b22d9 (diff) | |
download | busybox-w32-7a65fd536c6d9c7a7c99384510f5398f722e62e7.tar.gz busybox-w32-7a65fd536c6d9c7a7c99384510f5398f722e62e7.tar.bz2 busybox-w32-7a65fd536c6d9c7a7c99384510f5398f722e62e7.zip |
Use char for smallint on CRIS as well.
git-svn-id: svn://busybox.net/trunk/busybox@17362 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index f0b248b4c..2d49289e4 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -224,7 +224,7 @@ extern int sysinfo(struct sysinfo* info); | |||
224 | 224 | ||
225 | 225 | ||
226 | /* Size-saving "small" ints (arch-dependent) */ | 226 | /* Size-saving "small" ints (arch-dependent) */ |
227 | #if defined(i386) || defined(__x86_64__) || defined(__mips__) | 227 | #if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__) |
228 | /* add other arches which benefit from this... */ | 228 | /* add other arches which benefit from this... */ |
229 | typedef signed char smallint; | 229 | typedef signed char smallint; |
230 | typedef unsigned char smalluint; | 230 | typedef unsigned char smalluint; |