diff --git a/ast/Filelist.ast.mk b/ast/Filelist.ast.mk index 159bcdcd..90651bf0 100644 --- a/ast/Filelist.ast.mk +++ b/ast/Filelist.ast.mk @@ -1,6 +1,6 @@ SRC_FILES = \ -from_node/ast_free \ -from_node/ast_free_scripting \ +ast_free/ast_free \ +ast_free/ast_free_scripting \ from_node/from_node \ not_done_function \ not_done_print \ diff --git a/ast/src/from_node/ast_free.c b/ast/src/ast_free/ast_free.c similarity index 100% rename from ast/src/from_node/ast_free.c rename to ast/src/ast_free/ast_free.c diff --git a/ast/src/from_node/ast_free_scripting.c b/ast/src/ast_free/ast_free_scripting.c similarity index 100% rename from ast/src/from_node/ast_free_scripting.c rename to ast/src/ast_free/ast_free_scripting.c diff --git a/exec/src/arith/arith.c b/exec/src/arith/arith.c index 0a4caac2..95cae72a 100644 --- a/exec/src/arith/arith.c +++ b/exec/src/arith/arith.c @@ -6,7 +6,7 @@ /* By: maiboyer +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/07/26 15:14:50 by maiboyer #+# #+# */ -/* Updated: 2024/07/30 16:31:20 by maiboyer ### ########.fr */ +/* Updated: 2024/07/30 17:15:00 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -191,7 +191,6 @@ t_error run_arithmetic_ternary(t_ast_arithmetic_ternary *arithmetic_ternary, \ return (NO_ERROR); } - t_error run_arithmetic_postfix( \ t_ast_arithmetic_postfix *arithmetic_postfix, t_state *state, t_i64 *out) {