From 67e514d5f94724f76fa1788be8794e13a9fda2d2 Mon Sep 17 00:00:00 2001 From: mdev9 Date: Mon, 22 Apr 2024 20:04:28 +0200 Subject: [PATCH] useless fix (normed infinite loop) --- other/test3.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/other/test3.c b/other/test3.c index 70523fc..c71cecf 100644 --- a/other/test3.c +++ b/other/test3.c @@ -1,6 +1,18 @@ -int main(int argc, char **argv) +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* test3.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: marde-vr +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2024/04/22 19:42:37 by marde-vr #+# #+# */ +/* Updated: 2024/04/22 19:42:38 by marde-vr ### ########.fr */ +/* */ +/* ************************************************************************** */ + +int main(int argc, char **argv) { - (void)argv; - while(1) + (void) argv; + while (1) (void)argc; }