9 lines
141 B
C
9 lines
141 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
|