summaryrefslogtreecommitdiff
path: root/supervisor/shared/stack.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2018-08-02 14:35:46 -0700
committerScott Shawcroft <scott@tannewt.org>2018-08-02 14:35:46 -0700
commit5704bc8c93e36ded3e7dc8e46aa836e7a2acee15 (patch)
tree0b604cde903906b96042279e7bd6871f3ed2f7dd /supervisor/shared/stack.c
parenta88cdaca6a462da398b8e3a8a0c7de02d810ca37 (diff)
Share memory.c and a bit of polish.
Diffstat (limited to 'supervisor/shared/stack.c')
-rwxr-xr-xsupervisor/shared/stack.c4
1 files changed, 2 insertions, 2 deletions
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;
}