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.

_CODE_ACCESS & sin __relaxed_sin

Other Parts Discussed in Thread: TMS320F28379D, 4213

Dear team,

The device is TMS320F28379D. The doubts encountered when calling the sine and cosine functions in 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);

What is the difference between them? 

4213.math.h