]> git.proxmox.com Git - wasi-libc.git/blame - libc-bottom-half/headers/public/__struct_sockaddr.h
WASI libc prototype implementation.
[wasi-libc.git] / libc-bottom-half / headers / public / __struct_sockaddr.h
CommitLineData
320054e8
DG
1#ifndef __wasilibc___struct_sockaddr_h
2#define __wasilibc___struct_sockaddr_h
3
4#define __need_STDDEF_H_misc
5#include <stddef.h>
6
7#include <__typedef_sa_family_t.h>
8
9struct sockaddr {
10 _Alignas(max_align_t) sa_family_t sa_family;
11 char sa_data[0];
12};
13
14#endif