add/re-enable at_wini debug output
[minix3.git] / include / sys / un.h
blob902364f1204de81feb9c04db6b1352772357b7a6
1 /*
2 sys/un.h
3 */
5 /* Open Group Base Specifications Issue 6 */
7 #ifndef _SA_FAMILY_T
8 #define _SA_FAMILY_T
9 /* Should match corresponding typedef in <sys/socket.h> */
10 typedef uint8_t sa_family_t;
11 #endif /* _SA_FAMILY_T */
13 struct sockaddr_un
15 sa_family_t sun_family;
16 char sun_path[127];
19 /* Note: UNIX domain sockets are not implemented! */