From: Denys Vlasenko Date: Wed, 26 Jul 2017 21:08:36 +0000 (+0200) Subject: ash: force inlining of a trivial function X-Git-Tag: 1_28_0~299 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=488e609203c23b9826f75179f1b8e567617138ae;p=oweals%2Fbusybox.git ash: force inlining of a trivial function function old new delta bltinlookup 5 - -5 Signed-off-by: Denys Vlasenko --- diff --git a/shell/ash.c b/shell/ash.c index faa42e28c..f74fbd72f 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -2224,7 +2224,7 @@ reinit_unicode_for_ash(void) /* * Search the environment of a builtin command. */ -static inline const char * +static ALWAYS_INLINE const char * bltinlookup(const char *name) { return lookupvar(name);