lang-bootstrap/05/musl-final/include/sys/un.h
2025-04-05 10:55:40 +01:00

13 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