The following changes since commit 05a52be478dbbaa73d7ef563133125b24c001f1c: Merge branch 'nfs' of https://github.com/panxiao2014/fio (2024-06-14 06:19:28 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 6eaa6422fccf857e6b1a88492db805dafca8ee85: windows: don't define strtoll for 32-bit builds (2024-06-28 18:48:43 -0400) ---------------------------------------------------------------- Vincent Fu (1): windows: don't define strtoll for 32-bit builds os/windows/posix.c | 2 ++ 1 file changed, 2 insertions(+) --- Diff of recent changes: diff --git a/os/windows/posix.c b/os/windows/posix.c index a47223da..2ce18b8b 100644 --- a/os/windows/posix.c +++ b/os/windows/posix.c @@ -873,10 +873,12 @@ ssize_t writev(int fildes, const struct iovec *iov, int iovcnt) return bytes_written; } +#ifndef _WIN32 long long strtoll(const char *restrict str, char **restrict endptr, int base) { return _strtoi64(str, endptr, base); } +#endif int poll(struct pollfd fds[], nfds_t nfds, int timeout) {