diff options
author | Peter Kjellerstedt | 2007-01-18 10:26:07 +0000 |
---|---|---|
committer | Peter Kjellerstedt | 2007-01-18 10:26:07 +0000 |
commit | f8384fa50c78bd3a03985aa24e67e09696965eda (patch) | |
tree | c5fb5b5a9d0799c48bf890dbeaf212b791c31273 /include/libbb.h | |
parent | 1a250d9f32361b30a8a632ecc0023680b1e38323 (diff) | |
download | busybox-f8384fa50c78bd3a03985aa24e67e09696965eda.zip busybox-f8384fa50c78bd3a03985aa24e67e09696965eda.tar.gz |
Use char for smallint on CRIS as well.
Diffstat (limited to 'include/libbb.h')
-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 f0b248b..2d49289 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -224,7 +224,7 @@ extern int sysinfo(struct sysinfo* info); /* Size-saving "small" ints (arch-dependent) */ -#if defined(i386) || defined(__x86_64__) || defined(__mips__) +#if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__) /* add other arches which benefit from this... */ typedef signed char smallint; typedef unsigned char smalluint; |