1
0

un.h 170 B

12345678910111213
  1. #ifndef _SYS_UN_H
  2. #define _SYS_UN_H
  3. #define __NEED_sa_family_t
  4. #include <bits/alltypes.h>
  5. struct sockaddr_un
  6. {
  7. sa_family_t sun_family;
  8. char sun_path[108];
  9. };
  10. #endif