On Mon Mar 3 22:10:48 2025 +0000, Gabriel Ivăncescu wrote:
Wait, what is the point of this? `static` and unused is completely useless.
That's `used` (emit into binary even if unused from C code), not `unused` (suppress warning if unused, but do optimize it out). Latter would be reasonable (as would `static inline`), but former is indeed silly.
But in this case, I'd rather move it to some suitable .c file.