• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: BSD-3-Clause */
2 
3 #ifndef _COMMONLIB_BSD_GCD_H_
4 #define _COMMONLIB_BSD_GCD_H_
5 
6 #include <stdint.h>
7 
8 uint64_t gcd(uint64_t a, uint64_t b);
9 
10 #endif /* _COMMONLIB_BSD_GCD_H_ */
11