smallint can be a char for amd64 too

This commit is contained in:
Denis Vlasenko 2007-01-18 00:16:06 +00:00
parent ef44d9d9f2
commit cbbc043d1b

View File

@ -224,7 +224,7 @@ extern int sysinfo(struct sysinfo* info);
/* Size-saving "small" ints (arch-dependent) */
#if defined(i386) || defined (__mips__)
#if defined(i386) || defined(__x86_64__) || defined(__mips__)
/* add other arches which benefit from this... */
typedef signed char smallint;
typedef unsigned char smalluint;