From: Denis Vlasenko Date: Thu, 18 Jan 2007 00:16:06 +0000 (-0000) Subject: smallint can be a char for amd64 too X-Git-Tag: 1_4_0~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=cbbc043d1bce3bf48097520dbb91d84a423386a6;p=oweals%2Fbusybox.git smallint can be a char for amd64 too --- diff --git a/include/libbb.h b/include/libbb.h index 1294fb75d..f0b248b4c 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 (__mips__) +#if defined(i386) || defined(__x86_64__) || defined(__mips__) /* add other arches which benefit from this... */ typedef signed char smallint; typedef unsigned char smalluint;