Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#include <lib.h> #include <unistd.h> int mq_close(int queue) { message m; m.m3_i1= queue; return (_syscall(PM_PROC_NR,MQ_CLOSE,&m)); }
当我在 minix 中更新我的库时,我收到了这个错误“错误的包含语法错误”。帮助我解决这个问题。
改变
#include <lib.h>
进入
#include <minix/lib.h>
假设您使用指南安装了 minix 。