blob: 55f9b06d7c205bbfc3a26b649b2afc5ac6d58a91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _SYS_UN_H
#define _SYS_UN_H
/* JKR added file, all hacks will be in the files added, not in EGCS */
struct sockaddr_un
{
short sun_family; /* AF_UNIX */
char sun_path[108]; /* path name (gag) */
};
#endif /* _SYS_UN_H */
|