aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-18 00:16:06 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-18 00:16:06 +0000
commit632625edc65dd8d7f41ccc466f09b85eee23c3a2 (patch)
tree336a38a815143bd969d0ca04e9d3afe40848a1ec /include
parent4b60baae703c4fa2342ea3ee9c7f3e2bda26260f (diff)
downloadbusybox-w32-632625edc65dd8d7f41ccc466f09b85eee23c3a2.tar.gz
busybox-w32-632625edc65dd8d7f41ccc466f09b85eee23c3a2.tar.bz2
busybox-w32-632625edc65dd8d7f41ccc466f09b85eee23c3a2.zip
smallint can be a char for amd64 too
git-svn-id: svn://busybox.net/trunk/busybox@17358 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 1 insertions, 1 deletions
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);
224 224
225 225
226/* Size-saving "small" ints (arch-dependent) */ 226/* Size-saving "small" ints (arch-dependent) */
227#if defined(i386) || defined (__mips__) 227#if defined(i386) || defined(__x86_64__) || defined(__mips__)
228/* add other arches which benefit from this... */ 228/* add other arches which benefit from this... */
229typedef signed char smallint; 229typedef signed char smallint;
230typedef unsigned char smalluint; 230typedef unsigned char smalluint;