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
+13
View File
@@ -0,0 +1,13 @@
/*
* montauk-init.h -- one-time startup fixups, called from main().
*
* See montauk_startup() in montauk-compat.c for what it does and why it
* cannot be an __attribute__((constructor)): programs linked with
* programs/link.ld have no .init_array section, so constructors never run.
*/
#ifndef _MONTAUK_GIT_INIT_H_
#define _MONTAUK_GIT_INIT_H_
void montauk_startup(void);
#endif /* _MONTAUK_GIT_INIT_H_ */