All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m9s
9 lines
143 B
C
9 lines
143 B
C
#ifndef _LIBMATH_MATH_H
|
|
#define _LIBMATH_MATH_H
|
|
|
|
double fmod (double a, double b);
|
|
|
|
float fmodf (float a, float b);
|
|
|
|
#endif // _LIBMATH_MATH_H
|