Removed struct keyword

This commit is contained in:
Eduard Urbach 2025-04-04 13:32:55 +02:00
parent 42e7c8a306
commit 1a2c21de15
Signed by: eduard
GPG key ID: 49226B848C78F6C8
18 changed files with 44 additions and 40 deletions

View file

@ -1,11 +1,11 @@
struct sockaddr_in {
sockaddr_in {
sin_family int16
sin_port int16
sin_addr int64
sin_zero int64
sin_port int16
sin_addr int64
sin_zero int64
}
struct timespec {
seconds int64
timespec {
seconds int64
nanoseconds int64
}

View file

@ -1,7 +1,7 @@
struct sockaddr_in_bsd {
sin_len int8
sockaddr_in_bsd {
sin_len int8
sin_family int8
sin_port int16
sin_addr int64
sin_zero int64
sin_port int16
sin_addr int64
sin_zero int64
}