获取“函数‘fcloseall’的隐式声明”在 C99 中无效”编译为gnu99时

发布于 2024-10-12 00:02:52 字数 591 浏览 5 评论 0原文

考虑以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

意中人 2024-10-19 00:02:52

要在包含标准标头时包含非标准扩展,您需要定义适当的功能测试宏。在这种情况下,_GNU_SOURCE应该可以工作。

#define _GNU_SOURCE
#include <stdio.h>

这独立于-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.

#define _GNU_SOURCE
#include <stdio.h>

This is independent of -std=gnu99 which enables language extensions, not library extensions.

好菇凉咱不稀罕他 2024-10-19 00:02:52

fcloseall()man 页面中,

#define _GNU_SOURCE 
#include <stdio.h>

您必须定义宏 _GNU_SOURCE 以及 stdio.h 标头。 _GNU_SOURCE 是一个功能测试宏,用于创建可移植应用程序。

Here in the man page of fcloseall()

#define _GNU_SOURCE 
#include <stdio.h>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文