libuv: Add uv__statx() stub to cmake-bootstrap.c

This commit is contained in:
Kyle Edwards 2019-06-17 15:48:48 -04:00 committed by Brad King
parent 69b139cfca
commit cee57246ef

View File

@ -137,4 +137,13 @@ int uv__utimesat(int dirfd, const char* path, const struct timespec times[2],
errno = ENOSYS;
return -1;
}
int uv__statx(int dirfd,
const char* path,
int flags,
unsigned int mask,
struct uv__statx* statxbuf) {
errno = ENOSYS;
return -1;
}
#endif