From c966ba46a9fb1bf3b3f697f4c838c284ce8ac040 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Thu, 18 Jan 2007 10:32:09 +0000 Subject: - move the smallint that is platform dependant to it's proper place --- include/libbb.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'include/libbb.h') diff --git a/include/libbb.h b/include/libbb.h index 2d49289e4..2089d2322 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -223,17 +223,6 @@ struct sysinfo { extern int sysinfo(struct sysinfo* info); -/* Size-saving "small" ints (arch-dependent) */ -#if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__) -/* add other arches which benefit from this... */ -typedef signed char smallint; -typedef unsigned char smalluint; -#else -/* for arches where byte accesses generate larger code: */ -typedef int smallint; -typedef unsigned smalluint; -#endif - extern void chomp(char *s); extern void trim(char *s); -- cgit v1.2.3