https://github.com/torvalds/linux
Raw File
Tip revision: d7b9998810832bebb26d2396f8f7bfcb999f2cc5 authored by dependabot[bot] on 18 July 2024, 21:26:24 UTC
build(deps): bump urllib3 in /drivers/gpu/drm/ci/xfails
Tip revision: d7b9998
lcm.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LCM_H
#define _LCM_H

#include <linux/compiler.h>

unsigned long lcm(unsigned long a, unsigned long b) __attribute_const__;
unsigned long lcm_not_zero(unsigned long a, unsigned long b) __attribute_const__;

#endif /* _LCM_H */
back to top