This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

28379D 正余弦函数

28379D调用math.h中的正余弦函数,其中

#define sin __relaxed_sin
__inline double __relaxed_sin(double x)
{
return __sin(x);
}
#define cos __relaxed_cos
__inline double __relaxed_cos(double x)
{
return __cos(x);
}

_CODE_ACCESS double      cos(double x);

_CODE_ACCESS double      sin(double x);

二者有何不同?