1 2 #ifndef __SYS_LOADER_H__ 3 #define __SYS_LOADER_H__ 4 5 #include <sys/elf64.h> 6 7 bool Loader_CheckHeader(const Elf64_Ehdr *ehdr); 8 bool Loader_Load(Thread *thr, VNode *vn, void *buf, uint64_t len); 9 10 #endif /* __SYS_LOADER_H__ */ 11 12