math.c 207 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
#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
}