aboutsummaryrefslogtreecommitdiff
path: root/go-src/ctfcMath/ctfcMath.go
diff options
context:
space:
mode:
Diffstat (limited to 'go-src/ctfcMath/ctfcMath.go')
-rw-r--r--go-src/ctfcMath/ctfcMath.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/go-src/ctfcMath/ctfcMath.go b/go-src/ctfcMath/ctfcMath.go
deleted file mode 100644
index 5dfc613..0000000
--- a/go-src/ctfcMath/ctfcMath.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package ctfcmath
-
-import "math"
-
-func MaxInt(x int, y int) int {
- if x > y {
- return x
- }
- return y
-}
-
-func CeilDivInt(x int, y int) int {
- return int(math.Ceil(float64(x) / float64(y)))
-}