summaryrefslogtreecommitdiff
path: root/include/sys/un.h
blob: 84e5f52318f2577bb4102fffb7d259722dae5fd1 (plain)
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