Files
amiga-gcc/sys-include/sys/un.h
T
2022-12-31 15:57:19 +01:00

10 lines
222 B
C

#ifndef __SYS_UN_H
struct sockaddr_un {
sa_family_t sun_family; /* AF_UNIX */
char sun_path[108]; /* Pathname */
};
#define __SYS_UN_H
#endif