Savings on musl: function old new delta resume_main 582 614 +32 lbb_prepare - 20 +20 seq_main 432 449 +17 fgetsetversion 74 88 +14 ... script_main 1207 1180 -27 close_silently 28 - -28 shell_builtin_ulimit 655 626 -29 lineedit_read_key 280 247 -33 ------------------------------------------------------------------------------ (add/remove: 2/1 grow/shrink: 25/123 up/down: 182/-882) Total: -700 bytes text data bss dec hex filename 1005858 551 5676 1012085 f7175 busybox_old 1005136 551 5680 1011367 f6ea7 busybox_unstripped Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
		
			
				
	
	
		
			35 lines
		
	
	
		
			730 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			730 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* vi: set sw=4 ts=4: */
 | 
						|
/*
 | 
						|
 * Copyright (C) 2008 by Denys Vlasenko <vda.linux@googlemail.com>
 | 
						|
 *
 | 
						|
 * Licensed under GPLv2, see file LICENSE in this source tree.
 | 
						|
 */
 | 
						|
#include <errno.h>
 | 
						|
 | 
						|
struct globals;
 | 
						|
 | 
						|
#ifndef GCC_COMBINE
 | 
						|
 | 
						|
/* We cheat here. It is declared as const ptr in libbb.h,
 | 
						|
 * but here we make it live in R/W memory */
 | 
						|
struct globals *ptr_to_globals;
 | 
						|
 | 
						|
#ifdef errno
 | 
						|
int *bb_errno;
 | 
						|
#endif
 | 
						|
 | 
						|
 | 
						|
#else
 | 
						|
 | 
						|
 | 
						|
/* gcc -combine will see through and complain */
 | 
						|
/* Using alternative method which is more likely to break
 | 
						|
 * on weird architectures, compilers, linkers and so on */
 | 
						|
struct globals *const ptr_to_globals __attribute__ ((section (".data")));
 | 
						|
 | 
						|
#ifdef errno
 | 
						|
int *const bb_errno __attribute__ ((section (".data")));
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |