From cbbc043d1bce3bf48097520dbb91d84a423386a6 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 18 Jan 2007 00:16:06 +0000 Subject: [PATCH] smallint can be a char for amd64 too --- include/libbb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.25.1