#pragma once #pragma once #include int main(int argc, char **argv); void *malloc(size_t size); void *calloc(size_t count, size_t size); void free(void *block); struct image_buffer { char *base; size_t length; }; struct kjarna_boot_image { struct image_buffer buffer; kjarna_image_entry_func *entry; }; struct kjarna_boot_image get_boot_image(void);