From a9710cb73cc9ecadaff241428a39a26935cb5c0a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 25 Feb 2021 20:45:10 +0100 Subject: Applied even more warning flags! Fixing all the warnings wasn't that easy actually.. --- libc/inc/stack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/inc/stack.h') diff --git a/libc/inc/stack.h b/libc/inc/stack.h index 16725f8..f5ad52b 100644 --- a/libc/inc/stack.h +++ b/libc/inc/stack.h @@ -16,7 +16,7 @@ struct stack { struct stack_node *tail; }; -struct stack *stack_new(); +struct stack *stack_new(void); void stack_destroy(struct stack *stack); u32 stack_empty(struct stack *stack); u32 stack_push_bot(struct stack *stack, void *data); -- cgit v1.2.3