Files
llgo/runtime/internal/clite/libuv/_wrap/libuv.cpp
2025-06-11 21:02:32 +08:00

10 lines
120 B
C++

#include <uv.h>
extern "C" {
int uv_tcp_get_io_watcher_fd (uv_tcp_t* handle) {
return handle->io_watcher.fd;
}
}