diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-10 15:18:35 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-10 15:18:35 +0100 |
commit | 03c36e0be1fa64dd248741dc21af2db28e70c186 (patch) | |
tree | d87ce6679491c916bb1d88190389f121e2d9d484 | |
parent | f2539c78d2e507150dea06e8702c5ab8713d2b49 (diff) | |
download | busybox-w32-03c36e0be1fa64dd248741dc21af2db28e70c186.tar.gz busybox-w32-03c36e0be1fa64dd248741dc21af2db28e70c186.tar.bz2 busybox-w32-03c36e0be1fa64dd248741dc21af2db28e70c186.zip |
ash: ALWAYS_INLINE grabstackblock()
function old new delta
grabstackblock 5 - -5
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index a7f330c11..8c0f3bd8d 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -1532,7 +1532,7 @@ sstrdup(const char *p) | |||
1532 | return memcpy(stalloc(len), p, len); | 1532 | return memcpy(stalloc(len), p, len); |
1533 | } | 1533 | } |
1534 | 1534 | ||
1535 | static inline void | 1535 | static ALWAYS_INLINE void |
1536 | grabstackblock(size_t len) | 1536 | grabstackblock(size_t len) |
1537 | { | 1537 | { |
1538 | stalloc(len); | 1538 | stalloc(len); |