Update stdlib to use struct member docs from #2427 and other small changes (#2473)

* Doc comment improvements

* update `compression/qoi.c3` to use const enums

* revert sweeping doc comment changes that impacted readability for now

* Some tweaks.

---------

Co-authored-by: Christoffer Lerno <christoffer@aegik.com>
This commit is contained in:
Book-reader
2025-09-20 04:41:32 +12:00
committed by GitHub
parent b03ae8bb17
commit a6d33ec4af
19 changed files with 201 additions and 143 deletions

View File

@@ -52,8 +52,10 @@ union EpollData
struct EpollEvent @packed
{
uint events; /* Epoll events */
EpollData data; /* User data variable */
<* Epoll events *>
uint events;
<* User data variable *>
EpollData data;
}
struct EpollParams
@@ -62,7 +64,7 @@ struct EpollParams
ushort busy_poll_budget;
char prefer_busy_poll;
/* pad the struct to a multiple of 64bits */
<* pad the struct to a multiple of 64bits *>
char __pad;
}