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 /shell | |
parent | f2539c78d2e507150dea06e8702c5ab8713d2b49 (diff) | |
download | busybox-03c36e0be1fa64dd248741dc21af2db28e70c186.tar.gz |
ash: ALWAYS_INLINE grabstackblock()
function old new delta
grabstackblock 5 - -5
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-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) return memcpy(stalloc(len), p, len); } -static inline void +static ALWAYS_INLINE void grabstackblock(size_t len) { stalloc(len); |