summaryrefslogtreecommitdiff
path: root/rushs/tinyprintf/my_round
diff options
context:
space:
mode:
Diffstat (limited to 'rushs/tinyprintf/my_round')
-rw-r--r--rushs/tinyprintf/my_round/my_round.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/rushs/tinyprintf/my_round/my_round.c b/rushs/tinyprintf/my_round/my_round.c
deleted file mode 100644
index 324bc1d..0000000
--- a/rushs/tinyprintf/my_round/my_round.c
+++ /dev/null
@@ -1,6 +0,0 @@
-int my_round(float n)
-{
- if (n < 0)
- return n - 0.5;
- return n + 0.5;
-}