| 1 | #ifndef __wasilibc___struct_sockaddr_storage_h |
| 2 | #define __wasilibc___struct_sockaddr_storage_h |
| 3 | |
| 4 | #include <__typedef_sa_family_t.h> |
| 5 | |
| 6 | struct sockaddr_storage { |
| 7 | __attribute__((aligned(__BIGGEST_ALIGNMENT__))) sa_family_t ss_family; |
| 8 | char __ss_data[32]; |
| 9 | }; |
| 10 | |
| 11 | #endif |