feat: ports - git port

This commit is contained in:
2026-08-09 10:47:07 +02:00
parent cfb8d91442
commit 6f3cf99667
34 changed files with 2255 additions and 2 deletions
+18
View File
@@ -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_ */