summaryrefslogtreecommitdiff
path: root/lib/gcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcd.c')
-rw-r--r--lib/gcd.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/gcd.c b/lib/gcd.c
deleted file mode 100644
index 3657f129d7b8..000000000000
--- a/lib/gcd.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <linux/kernel.h>
-#include <linux/gcd.h>
-#include <linux/export.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;
-}
-EXPORT_SYMBOL_GPL(gcd);