summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAndrey Panov <rockford@yandex.ru>2015-03-04 23:11:29 +0300
committerSascha Hauer <s.hauer@pengutronix.de>2015-03-05 09:11:33 +0100
commit78d030226d25b2c4e4cbad6228fc3f90902015c5 (patch)
treecba126ba25dacef3c4ac0a4af00648cfd69008d3 /lib
parent09c4b63aa20e97011eb109794c7c23faf7ebdce4 (diff)
downloadbarebox-78d030226d25b2c4e4cbad6228fc3f90902015c5.tar.gz
barebox-78d030226d25b2c4e4cbad6228fc3f90902015c5.tar.xz
lib: Add gcd() function
It calculates greatest common divisor. Signed-off-by: Andrey Panov <rockford@yandex.ru> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile1
-rw-r--r--lib/gcd.c18
2 files changed, 19 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 226570a7e6..1684649dd5 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -51,3 +51,4 @@ obj-$(CONFIG_STMP_DEVICE) += stmp-device.o
obj-y += wchar.o
obj-y += libfile.o
obj-y += bitmap.o
+obj-y += gcd.o
diff --git a/lib/gcd.c b/lib/gcd.c
new file mode 100644
index 0000000000..86bdba9112
--- /dev/null
+++ b/lib/gcd.c
@@ -0,0 +1,18 @@
+#include <linux/gcd.h>
+
+/* Greatest common divisor */
+unsigned long gcd(unsigned long a, unsigned long b)
+{
+ unsigned long r;
+
+ if (a < b)
+ swap(a, b);
+
+ if (!b)
+ return a;
+ while ((r = a % b) != 0) {
+ a = b;
+ b = r;
+ }
+ return b;
+}