From 9808d031104375e92b807e45e23ca4e6b607566d Mon Sep 17 00:00:00 2001 From: jonas <jonas.stirnemann@etu.hesge.ch> Date: Mon, 6 Dec 2021 20:46:46 +0100 Subject: [PATCH] Moved useless headers from stack.h to stack.c --- stack.c | 3 ++- stack.h | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/stack.c b/stack.c index 4e59e8f..5ca7421 100644 --- a/stack.c +++ b/stack.c @@ -1,5 +1,6 @@ #include "stack.h" - +#include <stdio.h> +#include <stdlib.h> #define DEFAULT_CAPACITY 4 diff --git a/stack.h b/stack.h index 371cb4d..a8f99c1 100644 --- a/stack.h +++ b/stack.h @@ -1,6 +1,4 @@ -#include <stdlib.h> #include <stdbool.h> -#include <stdio.h> #ifndef _STACK_H_ #define _STACK_H_ -- GitLab