Files
2026-08-09 10:47:07 +02:00

14 lines
414 B
C

/*
* 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_ */