arning: implicit declaration of function ‘sleep’ [-Wimplicit-function-declaration]
时间: 2024-01-03 14:21:25 浏览: 118
Sleep函数的一个实现
这个警告出现是因为在代码中使用了sleep函数,但是没有包含相应的头文件,导致编译器发出“隐式声明的函数”警告。sleep函数的头文件是<unistd.h>,在使用sleep函数之前需要包含该头文件。下面是一个示例代码:
```c
#include <stdio.h>
#include <unistd.h>
int main() {
printf("Sleeping for 2 seconds...\n");
sleep(2);
printf("Done sleeping.\n");
return 0;
}
```
阅读全文