mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-26 17:57:22 +08:00
13 lines
207 B
C
13 lines
207 B
C
|
#include <math.h>
|
||
|
|
||
|
/* Fix me */
|
||
|
double sin(double x)
|
||
|
{
|
||
|
#warning sin function not supported for this platform
|
||
|
}
|
||
|
|
||
|
double cos(double x)
|
||
|
{
|
||
|
#warning cos function not supported for this platform
|
||
|
}
|