Meta: Run clang-format

This commit is contained in:
Alec Murphy 2025-06-07 08:42:32 -04:00
parent 9513a70a98
commit 5c0c981465
3 changed files with 5 additions and 10 deletions

View file

@ -25,12 +25,9 @@ class TcpSocket {
U64 send_buffer_filled;
U64 send_buffer_kick; // We set this to 1 when we have data available to net,
// Net sets back to 0 when ready to receive
U0(*close)
();
U64(*receive)
(U64 buf, U64 length);
U0(*send)
(U64 buf, U64 length);
U0 (*close)();
U64 (*receive)(U64 buf, U64 length);
U0 (*send)(U64 buf, U64 length);
};
class TcpBind {