Minix 中包含错误的语法

发布于 2024-12-15 09:48:18 字数 327 浏览 1 评论 0原文

我正在用 C 语言为 Minix 开发一个项目,我有一个文件夹来放置名为 core 的设备驱动程序。在 main.c 中,我包含了该文件夹内的 vbe.h,而 make 总是给我一个 bad 错误句法。

我尝试了两种方法:

  • #include "./core/vbe.h"

  • #include "core/vbe.h"

我总是出错!

谁能帮助我吗?

I am developing a project for Minix in C Language and I have a folder to put the drivers of the devices called core. In the main.c I did an include of the vbe.h that is inside this folder and the make give me allways an error of bad syntax.

I tried two ways:

  • #include "./core/vbe.h"

  • #include "core/vbe.h"

I have always an error!

Can anyone help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

素年丶 2024-12-22 09:48:18

只是为了让互联网知道,我遇到了这个错误并解决了它。我相信我也明白其中的原因。

我在未初始化的文件中使用了一个数组。当我注意到这一点并将数组注释掉时,它编译得很好。

我对错误措辞的推理是它假设我想包含这个数组,并且我忘记包含另一个文件。太烦人了。

Just so that the internet knows, I got this error and solved it. I believe I understand the reason as well.

I had used an array within a file which was not initialized. When I noticed this and commented the array out, it compiled fine.

My reasoning for the wording of the error is that it assumed I wanted to include this array, and that I forgot to include another file. So annoying.

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