feat: ports - git port
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* <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_ */
|
||||
Reference in New Issue
Block a user