#include int var __attribute__((section("custom_data"))) = 1337; __attribute__((section("custom_text"))) void custom() { printf("Hello from custom() in custom section!\n"); } int main() { printf("var = %d\n", var); custom(); return 0; }