From d58595d904be39b97ec48e3e2bd5cd1ad1131064 Mon Sep 17 00:00:00 2001 From: Stefani Seibold Date: Mon, 18 May 2015 08:38:48 +0200 Subject: [PATCH] fix header --- mtelf.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mtelf.h b/mtelf.h index c636bb8..27102f6 100644 --- a/mtelf.h +++ b/mtelf.h @@ -58,12 +58,9 @@ struct elf_image { size_t size; /* (file-) size of the image */ }; -/* For now we assume that all libraries can be - * opened via a filesystem. BASE is ignored for ET_EXEC files. */ int elf_read_library(struct task *task, struct library *lib, const char *filename, GElf_Addr bias); -/* Create a library object representing the main binary. The entry - * point address is stored to *ENTRYP. */ +/* Create a library object representing the main binary. */ struct library *elf_read_main_binary(struct task *task); #endif