projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef44d9d
)
smallint can be a char for amd64 too
author
Denis Vlasenko
<vda.linux@googlemail.com>
Thu, 18 Jan 2007 00:16:06 +0000
(
00:16
-0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Thu, 18 Jan 2007 00:16:06 +0000
(
00:16
-0000)
include/libbb.h
patch
|
blob
|
history
diff --git
a/include/libbb.h
b/include/libbb.h
index 1294fb75dffd8577a74b1743c0ef70ff0adda30f..f0b248b4c60c7a68a26c93a92755928b0d5479c4 100644
(file)
--- 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;