From 71a4df1bb0a715a1cd64cb14178689a17a9f5298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Tue, 11 Feb 2025 16:13:24 +0100 Subject: [PATCH] fix: stdio needs to be included before readline for compilation to work --- src/minishell.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/minishell.c b/src/minishell.c index e7a4ae1..f848cfd 100644 --- a/src/minishell.c +++ b/src/minishell.c @@ -6,14 +6,15 @@ /* By: kcolin +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/06 13:44:06 by kcolin #+# #+# */ -/* Updated: 2025/02/06 14:25:02 by kcolin ### ########.fr */ +/* Updated: 2025/02/11 16:22:29 by khais ### ########.fr */ /* */ /* ************************************************************************** */ +// stdio must be included before readline +#include #include #include #include -#include #include #include