mirror of
https://github.com/reactos/CMake.git
synced 2024-12-01 15:30:40 +00:00
libuv: Add uv__statx() stub to cmake-bootstrap.c
This commit is contained in:
parent
69b139cfca
commit
cee57246ef
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user