summaryrefslogtreecommitdiff
path: root/kernel/math.c
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-11-30 17:43:25 +0100
committerAnton Kling <anton@kling.gg>2024-11-30 17:43:25 +0100
commit5dd05779ce0a6544f4653eee87d278973386d0ab (patch)
tree57658272b9047d5ac4768197529e27d51c3c45be /kernel/math.c
parent1b49c460ec983eb23cace256d459b664d8a0841f (diff)
vfs: Move read() to vfs.c
Diffstat (limited to 'kernel/math.c')
-rw-r--r--kernel/math.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/kernel/math.c b/kernel/math.c
deleted file mode 100644
index 7018da0..0000000
--- a/kernel/math.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <math.h>
-int min(int a, int b) {
- return ((a) > (b) ? b : a);
-}
-int max(int a, int b) {
- return (a > b) ? a : b;
-}