summaryrefslogtreecommitdiff
path: root/math.c
diff options
context:
space:
mode:
Diffstat (limited to 'math.c')
-rw-r--r--math.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/math.c b/math.c
deleted file mode 100644
index 2d5e30c..0000000
--- a/math.c
+++ /dev/null
@@ -1,3 +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; }