我使用了该abs()
功能,并#include <math.h>
在代码顶部添加。但我不断收到此错误:
hello.c:20:11: warning: implicit declaration of function 'abs' is invalid in C99
[-Wimplicit-function-declaration]
int a = abs(arrOfHour[i] - hour) * 60 + minute;
^
我正在使用 LLVM 编译器。
为什么即使我已包含此错误也会发生math.h
?