| 1 | #ifndef __wasilibc___struct_sockaddr_h |
| 2 | #define __wasilibc___struct_sockaddr_h |
| 3 | |
| 4 | #include <__typedef_sa_family_t.h> |
| 5 | |
| 6 | struct sockaddr { |
| 7 | __attribute__((aligned(__BIGGEST_ALIGNMENT__))) sa_family_t sa_family; |
| 8 | char sa_data[0]; |
| 9 | }; |
| 10 | |
| 11 | #endif |