mirror of
git://git.musl-libc.org/musl
synced 2024-12-17 20:24:54 +00:00
14 lines
170 B
C
14 lines
170 B
C
#ifndef _SYS_UN_H
|
|
#define _SYS_UN_H
|
|
|
|
#define __NEED_sa_family_t
|
|
#include <bits/alltypes.h>
|
|
|
|
struct sockaddr_un
|
|
{
|
|
sa_family_t sun_family;
|
|
char sun_path[108];
|
|
};
|
|
|
|
#endif
|