- vc6 does not expose it

This commit is contained in:
Pierre Joye 2010-02-03 16:11:56 +00:00
parent dd38619aa5
commit 3247c2595d

View file

@ -1002,7 +1002,11 @@ CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func
if (path_length == 0 || path_length >= MAXPATHLEN-1) {
#ifdef TSRM_WIN32
# if _MSC_VER < 1300
errno = EINVAL;
# else
_set_errno(EINVAL);
# endif
#else
errno = EINVAL;
#endif