gcc 20181445-2.1.c -o 20181445-2.1 -I/usr/include/SDL -lSDL -lpthread -lSDL_ttf 20181445-2.1.c: In function ‘main’: 20181445-2.1.c:89:17: warning: implicit declaration of function ‘waitpid’ [-Wimplicit-function-declaration] 89 | waitpid(pid,&stat,0);
时间: 2024-02-28 18:55:15 浏览: 152
这个编译警告是因为你在代码中调用了waitpid函数,但是没有包含相应的头文件声明该函数。你需要在代码文件的头部加入以下语句:
```
#include <sys/wait.h>
```
这条语句会引入waitpid函数的函数原型声明,解决编译警告的问题。
阅读全文