Microsoft Visual Studio下编译缺少头文件unistd.h
程序员文章站
2022-05-06 19:14:47
...
把下面的内容保存为unistd.h
/** This file is part of the Mingw32 package.
* unistd.h maps (roughly) to io.h
*/
#ifndef _UNISTD_H
#define _UNISTD_H
#include <io.h>
#include <process.h>
#endif /* _UNISTD_H */