blob: 33ecd39523a2cc04c9dcc6947c971ec4553e3589 [file] [log] [blame]
Lawrence Tang67cbed62022-07-18 16:44:51 +01001#ifndef GEN_SECTIONS_H
2#define GEN_SECTIONS_H
3
4#include <stdlib.h>
5
6size_t generate_section_generic(void** location);
7size_t generate_section_ia32x64(void** location);
8size_t generate_section_arm(void** location);
9
10#endif