aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-26 23:08:36 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-26 23:08:36 +0200
commit488e609203c23b9826f75179f1b8e567617138ae (patch)
treefb2330a880177629e56e0e290498e5506f62ef32 /shell
parentb8c0bc18f0cc31e3a2f41dd2c0b30426e4a77fc5 (diff)
downloadbusybox-488e609203c23b9826f75179f1b8e567617138ae.tar.gz
ash: force inlining of a trivial function
function old new delta bltinlookup 5 - -5 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
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);