rt-thread-official/components/libc/minilibc/math.h

10 lines
132 B
C
Raw Normal View History

#ifndef __MATH_H__
#define __MATH_H__
#define M_PI 3.141592653589793238462643
double sin(double x);
double cos(double x);
2013-01-08 22:40:58 +08:00
#endif