fix type issues in stdint.h so underlying types of 64-bit types match ABI
[musl] / include / sys / un.h
1 #ifndef _SYS_UN_H
2 #define _SYS_UN_H
3
4 #define __NEED_sa_family_t
5 #include <bits/alltypes.h>
6
7 struct sockaddr_un
8 {
9         sa_family_t sun_family;
10         char sun_path[108];
11 };
12
13 #endif