许多在Linux下开发的C程序都需要头文件unistd.h,但VC中没有个头文件, 所以用VC编译总是报错。把下面的内容保存为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 */
我按这种方法作了,但编译后出现更多错误,如下:
c:\program files\microsoft visual studio\vc98\include\gl\gl.h(1152) : error C2054: expected '(' to follow 'WINGDIAPI'
c:\program files\microsoft visual studio\vc98\include\gl\gl.h(1152) : error C2085: 'APIENTRY' : not in formal parameter list
c:\program files\microsoft visual studio\vc98\include\gl\gl.h(1152) : error C2146: syntax error : missing ',' before identifier 'glAccum'
c:\program files\microsoft visual studio\vc98\include\gl\gl.h(1152) : error C2143: syntax error : missing ';' before '('
c:\program files\microsoft visual studio\vc98\include\gl\gl.h(1152) : error C2059: syntax error : ')'
由于错误太多,所以只复制了部分
请教高手:这是怎么回事?该怎么解决这个问题呢?谢谢
请教头文件unistd.h在VC中的问题
我在VC中编译一个C++程序,但是说找不到unistd.h。于是在网上查到说,