From 380783acef86885b2a3d8b9058598a2dd22e2dba Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 20 May 2008 20:28:35 +0000 Subject: Introduce and use small[u]int type. Changes in size: - 79 0 28 107 6b libc/inet/rpc/create_xid.o + 76 0 25 101 65 libc/inet/rpc/create_xid.o - 126 0 4 130 82 libc/misc/assert/__assert.o + 123 0 1 124 7c libc/misc/assert/__assert.o - 648 4 24 676 2a4 libc/misc/internals/__uClibc_main.o + 645 4 21 670 29e libc/misc/internals/__uClibc_main.o - 230 0 4 234 ea libc/stdlib/abort.o + 216 0 1 217 d9 libc/stdlib/abort.o - 129 0 4 133 85 libc/termios/tcgetsid.o + 126 0 1 127 7f libc/termios/tcgetsid.o --- include/unistd.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'include') diff --git a/include/unistd.h b/include/unistd.h index 7590640fd..53ee6df64 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1107,4 +1107,14 @@ extern char *ctermid (char *__s) __THROW; __END_DECLS + +#ifdef UCLIBC_INTERNAL +#ifndef smallint /* if arch didn't override it in bits/wordsize.h */ +typedef int smallint; +typedef unsigned smalluint; +#define smallint smallint +#endif +#endif + + #endif /* unistd.h */ -- cgit v1.2.3