mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 09:59:24 +08:00
6f3e01a9c5
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@636 bbd45198-f89e-11dd-88c7-29a3b14d5316
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
|
|
}
|