summaryrefslogtreecommitdiff
path: root/src/math.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math.h')
-rw-r--r--src/math.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/math.h b/src/math.h
index 79b52f0..0cb915f 100644
--- a/src/math.h
+++ b/src/math.h
@@ -4,7 +4,5 @@ add_size(const size_t x, const size_t y, size_t *const out);
int
mul_size(const size_t x, const size_t y, size_t *const out);
-inline size_t
-max_size(size_t x, size_t y) {
- return x > y ? x : y;
-}
+size_t
+max_size(size_t x, size_t y);