Files
c-utils/cmath.h
2021-12-16 09:29:17 +08:00

11 lines
141 B
C

#ifndef _UTIL_CMATH_H
#define _UTIL_CMATH_H
#ifdef __cplusplus
extern "C" {
#endif
int GCD(int a, int b);
#ifdef __cplusplus
}
#endif
#endif