1 2 3 4 5 6 7 8 9 10 11
#ifndef __SYS_UN_H #define __SYS_UN_H typedef __UINT16_TYPE__ sa_family_t; struct sockaddr_un { sa_family_t sun_family; char sun_path[108]; }; #endif