From 5704bc8c93e36ded3e7dc8e46aa836e7a2acee15 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Thu, 2 Aug 2018 14:35:46 -0700 Subject: Share memory.c and a bit of polish. --- supervisor/shared/stack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'supervisor/shared/stack.c') diff --git a/supervisor/shared/stack.c b/supervisor/shared/stack.c index f6c74e6d8..6b74742eb 100755 --- a/supervisor/shared/stack.c +++ b/supervisor/shared/stack.c @@ -52,11 +52,11 @@ void allocate_stack(void) { } } -inline void stack_init(void) { +void stack_init(void) { allocate_stack(); } -inline void stack_resize(void) { +void stack_resize(void) { if (next_stack_size == current_stack_size) { return; } -- cgit v1.2.3