gcd.c (f29f24b5568fd6169e0363c78f1a80db38d0e7e9) | gcd.c (457c89965399115e5cd8bf38f9c597293405703d) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only |
|
1#include <linux/kernel.h> 2#include <linux/gcd.h> 3#include <linux/export.h> 4 5/* 6 * This implements the binary GCD algorithm. (Often attributed to Stein, 7 * but as Knuth has noted, appears in a first-century Chinese math text.) 8 * --- 76 unchanged lines hidden --- | 2#include <linux/kernel.h> 3#include <linux/gcd.h> 4#include <linux/export.h> 5 6/* 7 * This implements the binary GCD algorithm. (Often attributed to Stein, 8 * but as Knuth has noted, appears in a first-century Chinese math text.) 9 * --- 76 unchanged lines hidden --- |