作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 mkstemp() 函数有问题
。 cygwin
上的 GCC 编译器生成警告:
implicit declaration of function ‘mkstemp‘
GCcflags:-std=c99 -Wall
包括:
#include </usr/include/stdlib.h>
#include </usr/include/unistd.h>
最佳答案
在我的 cygwin
stdlib.h
中,有 mkstemp
声明,如下所示:
#ifndef __STRICT_ANSI__
#ifndef _REENT_ONLY
int _EXFUN(mkstemp,(char *));
#endif
看起来mkstemp
不是ANSI C
。确保您没有将编译器设置为强制执行特定标准(放弃 c99
),并且不要使用 -ansi/-pedantic
标志。
另外...放弃 #include
中的 /usr/include/
部分。编译器会为您处理这些事情。
关于c - mkstemp 函数的隐式声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24758058/
我是一名优秀的程序员,十分优秀!