情况是这样的,我在main.c中 想调用 sin()这个函数 于是 我在 头文件里面添加了#include"math.h"或者#include<math.h>, 然后编译的时候还是显示sin没定义,在main.c中 也无法打开sin的定义,后来我直接打开了math.h里面的定义,,里面是这样的 #ifndef __TI_COMPILER_VERSION__
#define cos(x) _Sin(x, 1)
#define cosh(x) _Cosh(x, 1)
#define log(x) _Log(x, 0)
#define log10(x) _Log(x, 1)
#define sin(x) _Sin(x, 0)
#define sinh(x) _Sinh(x, 1)
#endif /* __TI_COMPILER_VERSION__ */
反正我怎么弄 就是没法使用那个函数 ,怎么回事呢 |