天天看点

Cannot open include file: 'unistd.h': No such file or directory的解决办法在自己编译的include目录中,添加一个文件unistd.h

在自己编译的include目录中,添加一个文件unistd.h

内容:

#ifndef _UNISTD_H
#define _UNISTD_H
 
#include <io.h>
#include <process.h>
 
#endif /* _UNISTD_H */

#define _UNISTD_H

#include <io.h>
#include <process.h>

#endif /* _UNISTD_H */      

#define _UNISTD_H

#include <io.h>

#include <process.h>

#endif /* _UNISTD_H */

两个include是否必要不确定。

如果有其他需要定义的宏,可以直接在这里处理。

继续阅读