aboutsummaryrefslogtreecommitdiff
path: root/libc/stack.c
diff options
context:
space:
mode:
authorMarvin Borner2021-02-25 17:42:46 +0100
committerMarvin Borner2021-02-25 17:42:46 +0100
commit34885f1c73824a0fe47aa095e9d55a57021239d2 (patch)
treeb59dfe47069d1f42bd8123e647fadf74bff835a6 /libc/stack.c
parentb85ba196c47920b9d1b6622718a34f8f6f23bef3 (diff)
Added *many* static keywords
Diffstat (limited to 'libc/stack.c')
-rw-r--r--libc/stack.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/stack.c b/libc/stack.c
index cd5a2aa..0941e29 100644
--- a/libc/stack.c
+++ b/libc/stack.c
@@ -29,7 +29,7 @@ void stack_destroy(struct stack *stack)
stack = NULL;
}
-struct stack_node *stack_new_node()
+static struct stack_node *stack_new_node()
{
struct stack_node *node = malloc(sizeof(*node));
node->data = NULL;
@@ -39,7 +39,7 @@ struct stack_node *stack_new_node()
return node;
}
-u32 stack_push_bot_node(struct stack *stack, struct stack_node *node)
+static u32 stack_push_bot_node(struct stack *stack, struct stack_node *node)
{
if (!stack || !node)
return 0;
@@ -60,7 +60,7 @@ u32 stack_push_bot_node(struct stack *stack, struct stack_node *node)
return 1;
}
-u32 stack_push_node(struct stack *stack, struct stack_node *node)
+static u32 stack_push_node(struct stack *stack, struct stack_node *node)
{
if (!stack || !node)
return 0;