This commit is contained in:
XMRig 2020-12-03 19:45:16 +07:00
parent 11da7a3155
commit 3055e03b7e
No known key found for this signature in database
GPG key ID: 446A53638BE94409
5 changed files with 33 additions and 12 deletions

View file

@ -28,6 +28,12 @@ using uv_handle_t = struct uv_handle_s;
using uv_stream_t = struct uv_stream_s;
using uv_tty_t = struct uv_tty_s;
#ifdef XMRIG_OS_WIN
using ssize_t = intptr_t;
#else
# include <sys/types.h>
#endif
namespace xmrig {