在VS2010下如何使用头文件unistd.h

我在编译一些老程序时里面包含了如open、read、write、_exit、getpid等函数。在linux下能够编译通过的包含此头文件的程序,在VC下编译时出现了如下问题

 fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory,所以必须把这个头文件加入到VS2010的头文件库里面,其它的编译器也是如此,对于VS2010来说只要在你的默认库文件夹下(我的电脑是C:\Program Files\Microsoft Visual Studio 10.0\VC\include)添加一个unistd.h文件即可,或者直接增加一个unistd.h头文件其内容如下:

#ifndef _UNISTD_H

#define _UNISTD_H 
#include  
#include  
#endif /* _UNISTD_H */

这样 在重新编译包含unistd.h的程序就能通过了,但是出现警告:warning C4996: 'read': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _read. See online help for details.
1>          d:\program files\microsoft visual studio 10.0\vc\include\io.h(313) : 参见“read”的声明但是出现警告:

直接用_read替代可消除报警。每个报警中,都可以使用 use the ISO C++ conformant name: 中函数替代,就能消除所有报警


出现警告的原因是Visual C++ 2010使用了更加安全的run-time library routines。所以调用旧的函数时会出现警告。

你可能感兴趣的:(vs2010)