获取“函数‘fcloseall’的隐式声明”在 C99 中无效”编译为gnu99时
考虑以下 C 代码:
#include <stdio.h>
#include <stdlib.h>
void fatal(const char* message){
/*
Prints a message and terminates the program.
Closes all open i/o streams before exiting.
*/
printf("%s\n", message);
fcloseall();
exit(EXIT_FAILURE);
}
我使用 clang 2.8 进行编译:clang -Wall -std=gnu99 -o
并得到:隐式声明函数“fcloseall”在 C99 中无效
这是正确的,但我显式编译为 gnu99 [应该支持 fcloseall() ],而不是c99。 虽然代码可以运行,但我不喜欢在编译时出现未解决的警告。 我该如何解决这个问题?
编辑:更正了技巧。
Consider the following C code:
#include <stdio.h>
#include <stdlib.h>
void fatal(const char* message){
/*
Prints a message and terminates the program.
Closes all open i/o streams before exiting.
*/
printf("%s\n", message);
fcloseall();
exit(EXIT_FAILURE);
}
I'm using clang 2.8 to compile: clang -Wall -std=gnu99 -o <executable> <source.c>
And get: implicit declaration of function 'fcloseall' is invalid in C99
Which is true, but i'm explicitly compiling to gnu99 [which should support fcloseall()], and not to c99.
Although the code runs, I don't like to have unresolved warnings when compiling.
How can i solve this?
Edit: corrected tipo.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在包含标准标头时包含非标准扩展,您需要定义适当的功能测试宏。在这种情况下,
_GNU_SOURCE
应该可以工作。这独立于
-std=gnu99
,它支持语言扩展,而不是库扩展。To include non-standard extensions when you include standard headers you need to define the appropriate feature test macro. In this case
_GNU_SOURCE
should work.This is independent of
-std=gnu99
which enables language extensions, not library extensions.在
fcloseall()
的man
页面中,您必须定义宏 _GNU_SOURCE 以及
stdio.h
标头。_GNU_SOURCE
是一个功能测试宏,用于创建可移植应用程序。Here in the
man
page offcloseall()
You have to define macros _GNU_SOURCE is you snippet, along with
stdio.h
header._GNU_SOURCE
is a feature test macros which is used to create portable application.