1
0
mirror of https://github.com/bebbo/amiga-gcc.git synced 2026-05-03 23:21:20 +00:00
Files
amiga-gcc/sys-include/sys/un.h
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