| 1 | #ifndef __wasilibc___struct_sockaddr_in_h |
| 2 | #define __wasilibc___struct_sockaddr_in_h |
| 3 | |
| 4 | #include <__typedef_sa_family_t.h> |
| 5 | #include <__typedef_in_port_t.h> |
| 6 | #include <__struct_in_addr.h> |
| 7 | |
| 8 | struct sockaddr_in { |
| 9 | __attribute__((aligned(__BIGGEST_ALIGNMENT__))) sa_family_t sin_family; |
| 10 | in_port_t sin_port; |
| 11 | struct in_addr sin_addr; |
| 12 | }; |
| 13 | |
| 14 | #endif |