我用的VS2005,把别人的一个写好的C文件编译成一个DLL,出现错误:
未声明的标识符:F_OK ,在这一行:
 if ( access(path,F_OK) == 0 ) { ......我是不是缺少引用头文件,请C同事们指点
我的包含头文件列表:
#include <stdio.h>
#include <tchar.h> 
#include <stdlib.h>
#include <string.h> 
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>   
谢谢!