diff --git a/include/fast_io_hosted/platforms/systemcall_details.h b/include/fast_io_hosted/platforms/systemcall_details.h index 9675aafe..d0560f5a 100644 --- a/include/fast_io_hosted/platforms/systemcall_details.h +++ b/include/fast_io_hosted/platforms/systemcall_details.h @@ -29,9 +29,9 @@ inline int sys_dup(int old_fd) #else auto fd{noexcept_call( #if defined(_WIN32) && !defined(__BIONIC__) - ::_dup + _dup #else - ::dup + dup #endif , old_fd)};