Luna/libc/include/sys/un.h

15 lines
211 B
C
Raw Permalink Normal View History

/* sys/un.h: The sockaddr_un structure for AF_UNIX sockets. */
#ifndef _SYS_UN_H
#define _SYS_UN_H
#include <bits/socket.h>
struct sockaddr_un
{
sa_family_t sun_family;
char sun_path[108];
};
#endif