summaryrefslogtreecommitdiff
path: root/src/include/math.h
diff options
context:
space:
mode:
authorBrett Weiland <brett_weiland@bpcspace.com>2021-08-24 14:09:29 -0500
committerBrett Weiland <brett_weiland@bpcspace.com>2021-08-24 14:09:29 -0500
commit9b22a6965579ea1867aea291d910c96f386b518b (patch)
treed06dbb9c4708f1cc713bcb115b32ff9bce4cf9b9 /src/include/math.h
parentbad4b0e9bdfee336bfc1c23761408279eaec1558 (diff)
major backup 8.24.21
Diffstat (limited to 'src/include/math.h')
-rw-r--r--src/include/math.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/math.h b/src/include/math.h
new file mode 100644
index 0000000..10b0521
--- /dev/null
+++ b/src/include/math.h
@@ -0,0 +1,6 @@
+#ifndef MATH_INCLUDED
+#define MATH_INCLUDED
+
+#define DIV_ROUND_UP(number, factor) (((number) + ((factor) - 1)) / factor)
+
+#endif