Mercurial
view third_party/libuv/docs/code/default-loop/main.c @ 231:09a96dcb2b4c hg-web
[merge] Join existing hg-web branch head
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Sun, 02 Aug 2026 16:50:48 -0700 |
| parents | 948de3f54cea |
| children |
line wrap: on
line source
#include <stdio.h> #include <uv.h> int main() { uv_loop_t *loop = uv_default_loop(); printf("Default loop.\n"); uv_run(loop, UV_RUN_DEFAULT); uv_loop_close(loop); return 0; }