19 lines
416 B
C
19 lines
416 B
C
/*
|
|
* <sys/un.h> for the MontaukOS git port.
|
|
*
|
|
* Included unconditionally by git-compat-util.h. The port builds with
|
|
* NO_UNIX_SOCKETS=1, so nothing constructs one of these -- the type just has
|
|
* to exist.
|
|
*/
|
|
#ifndef _MONTAUK_GIT_SYS_UN_H_
|
|
#define _MONTAUK_GIT_SYS_UN_H_
|
|
|
|
#include <sys/socket.h>
|
|
|
|
struct sockaddr_un {
|
|
sa_family_t sun_family;
|
|
char sun_path[108];
|
|
};
|
|
|
|
#endif /* _MONTAUK_GIT_SYS_UN_H_ */
|