repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Restore the "GPL licensing not permitted" in GLUT license headers.
[haiku.git]
/
headers
/
posix
/
sys
/
un.h
blob
0cdd5783aedf4e59922031a0450fbe741528477a
1
/*
2
* Copyright 2006-2012 Haiku, Inc. All Rights Reserved.
3
* Distributed under the terms of the MIT License.
4
*/
5
#ifndef _SYS_UN_H
6
#define _SYS_UN_H
7
8
9
#include <sys/socket.h>
10
11
12
struct
sockaddr_un
{
13
uint8_t
sun_len
;
14
uint8_t
sun_family
;
15
char
sun_path
[
126
];
16
};
17
18
#endif
/* _SYS_UN_H */