summaryrefslogtreecommitdiff
path: root/rushs/tinyprintf/fact/fact.c
diff options
context:
space:
mode:
Diffstat (limited to 'rushs/tinyprintf/fact/fact.c')
-rw-r--r--rushs/tinyprintf/fact/fact.c8
1 files changed, 0 insertions, 8 deletions
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);
-}