Use char for smallint on CRIS as well.

This commit is contained in:
Peter Kjellerstedt 2007-01-18 10:26:07 +00:00
parent 1a250d9f32
commit f8384fa50c

View File

@ -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;