11 lines
240 B
C
11 lines
240 B
C
|
|
#ifndef __wasilibc___struct_sockaddr_h
|
||
|
|
#define __wasilibc___struct_sockaddr_h
|
||
|
|
|
||
|
|
#include <__typedef_sa_family_t.h>
|
||
|
|
|
||
|
|
struct sockaddr {
|
||
|
|
__attribute__((aligned(__BIGGEST_ALIGNMENT__))) sa_family_t sa_family;
|
||
|
|
char sa_data[0];
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|