From 73c2b00a10c5786ddeeacc915e233fd4df1c9321 Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Sat, 11 Oct 2025 22:19:00 +0200 Subject: fix: evalexpr & tinyprintf contenaient toute la piscine --- rushs/tinyprintf/fact/fact.c | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 rushs/tinyprintf/fact/fact.c (limited to 'rushs/tinyprintf/fact/fact.c') diff --git a/rushs/tinyprintf/fact/fact.c b/rushs/tinyprintf/fact/fact.c deleted file mode 100644 index 1440c94..0000000 --- a/rushs/tinyprintf/fact/fact.c +++ /dev/null @@ -1,8 +0,0 @@ -unsigned long fact(unsigned n) -{ - if (n == 0) - { - return 1; - } - return n * fact(n - 1); -} -- cgit v1.2.3