diff options
author | Marvin Borner | 2021-02-25 20:45:10 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-25 20:45:10 +0100 |
commit | a9710cb73cc9ecadaff241428a39a26935cb5c0a (patch) | |
tree | 68f509407bc49a4da43ccadfd9115b9e6f7eb413 /libc/stack.c | |
parent | 26587adae4f5ec61d03fd7075805a24b29107fe3 (diff) |
Applied even more warning flags!
Fixing all the warnings wasn't that easy actually..
Diffstat (limited to 'libc/stack.c')
-rw-r--r-- | libc/stack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stack.c b/libc/stack.c index 0941e29..e86a8c6 100644 --- a/libc/stack.c +++ b/libc/stack.c @@ -6,7 +6,7 @@ static int nonce = 0; -struct stack *stack_new() +struct stack *stack_new(void) { struct stack *stack = malloc(sizeof(*stack)); stack->tail = NULL; @@ -29,7 +29,7 @@ void stack_destroy(struct stack *stack) stack = NULL; } -static struct stack_node *stack_new_node() +static struct stack_node *stack_new_node(void) { struct stack_node *node = malloc(sizeof(*node)); node->data = NULL; |