summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/sys/un.h
blob: 000a937c1df7b6710dc5dda7a2d612643b1743f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef	_SYS_UN_H
#define	_SYS_UN_H

#include <sys/cdefs.h>

#define UNIX_PATH_MAX	108

struct sockaddr_un {
	sa_family_t sun_family;	/* AF_UNIX */
	char sun_path[UNIX_PATH_MAX];	/* pathname */
};

#endif	/* sys/un.h  */