From f95c23a05d5b74355352debb94c9bec830fc83d4 Mon Sep 17 00:00:00 2001 From: Maieul BOYER Date: Tue, 30 Jul 2024 16:59:38 +0200 Subject: [PATCH] Fix header wrong prot --- ast/include/ast/_function_declaration.h | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/ast/include/ast/_function_declaration.h b/ast/include/ast/_function_declaration.h index 596e8a54..b897a601 100644 --- a/ast/include/ast/_function_declaration.h +++ b/ast/include/ast/_function_declaration.h @@ -1,28 +1,22 @@ /* ************************************************************************** */ /* */ /* ::: :::::::: */ -/* function_declaration.h :+: :+: :+: */ +/* _function_declaration.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/07/26 11:30:24 by rparodi #+# #+# */ -/* Updated: 2024/07/26 12:59:29 by rparodi ### ########.fr */ +/* Updated: 2024/07/30 16:59:21 by maiboyer ### ########.fr */ /* */ /* ************************************************************************** */ -#ifndef FUNCTION_DECLARATION_H -# define FUNCTION_DECLARATION_H +#ifndef _FUNCTION_DECLARATION_H +# define _FUNCTION_DECLARATION_H # include "ast/ast.h" # include "me/types.h" # include -#define NOT_DONE \ - { \ - printf("function `%s` isn't done !\n", __func__); \ - (void)(self); \ - } - void ast_print_node(t_ast_node self); void ast_print_node_command(t_ast_node self);