mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
smallint can be a char for amd64 too
This commit is contained in:
parent
ef44d9d9f2
commit
cbbc043d1b
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue