svn commit: trunk/busybox/include

vda at busybox.net vda at busybox.net
Thu Jan 18 00:16:07 UTC 2007


Author: vda
Date: 2007-01-17 16:16:06 -0800 (Wed, 17 Jan 2007)
New Revision: 17358

Log:
smallint can be a char for amd64 too


Modified:
   trunk/busybox/include/libbb.h


Changeset:
Modified: trunk/busybox/include/libbb.h
===================================================================
--- trunk/busybox/include/libbb.h	2007-01-17 23:16:16 UTC (rev 17357)
+++ trunk/busybox/include/libbb.h	2007-01-18 00:16:06 UTC (rev 17358)
@@ -224,7 +224,7 @@
 
 
 /* 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;




More information about the busybox-cvs mailing list