Files
llgo/runtime/internal/clite/libuv/_wrap/libuv.cpp

10 lines
120 B
C++
Raw Normal View History

2025-02-14 17:18:13 +08:00
#include <uv.h>
2025-06-11 21:02:32 +08:00
extern "C" {
2025-02-14 17:18:13 +08:00
int uv_tcp_get_io_watcher_fd (uv_tcp_t* handle) {
return handle->io_watcher.fd;
2025-06-11 21:02:32 +08:00
}
}