Restore the "GPL licensing not permitted" in GLUT license headers.
[haiku.git] / headers / posix / sys / un.h
blob0cdd5783aedf4e59922031a0450fbe741528477a
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
9 #include <sys/socket.h>
12 struct sockaddr_un {
13 uint8_t sun_len;
14 uint8_t sun_family;
15 char sun_path[126];
18 #endif /* _SYS_UN_H */