1
0
mirror of https://github.com/fluencelabs/musl synced 2025-05-14 08:11:28 +00:00

14 lines
170 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#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