mirror of
https://github.com/bebbo/amiga-gcc.git
synced 2026-05-03 23:21:20 +00:00
10 lines
222 B
C
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
|