From: Peter Kjellerstedt Date: Thu, 18 Jan 2007 10:26:07 +0000 (-0000) Subject: Use char for smallint on CRIS as well. X-Git-Tag: 1_4_0~13 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f8384fa50c78bd3a03985aa24e67e09696965eda;p=oweals%2Fbusybox.git Use char for smallint on CRIS as well. --- 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); /* 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;