使用 Visual Studio 2015 進行程序開發工做時,若是編譯的是來自於Linux平臺的源文件,該源文件可能會包含頭文件 uninstd.h,這樣會產生報錯信息:函數
在VS的安裝目錄下找到 "VC\include" 文件夾,在其中建立一個 uninstd.h 文件,內容以下:code
#ifndef _UNISTD_H #define _UNISTD_H #include <io.h> #include <process.h> #endif
這樣VS就會包含該頭文件並能夠調用所需的函數了。開發