lang-bootstrap/05/musl-final/include/sys/un.h

14 lines
170 B
C
Raw Permalink Normal View History

2025-04-05 10:55:40 +01: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