Lawrence Tang | 67cbed6 | 2022-07-18 16:44:51 +0100 | [diff] [blame^] | 1 | #ifndef GEN_SECTIONS_H |
2 | #define GEN_SECTIONS_H | ||||
3 | |||||
4 | #include <stdlib.h> | ||||
5 | |||||
6 | size_t generate_section_generic(void** location); | ||||
7 | size_t generate_section_ia32x64(void** location); | ||||
8 | size_t generate_section_arm(void** location); | ||||
9 | |||||
10 | #endif |