https://github.com/torvalds/linux
Raw File
Tip revision: 0d0fb0f9c5fddef4a10242fe3337f00f528a3099 authored by Linus Torvalds on 13 April 2010, 01:41:35 UTC
Linux 2.6.34-rc4
Tip revision: 0d0fb0f
lcm.h
#ifndef _LCM_H
#define _LCM_H

#include <linux/compiler.h>

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

#endif /* _LCM_H */
back to top