Added dummy read_elf_info for the non-ELF case (reported by Steven

Edwards).
This commit is contained in:
Alexandre Julliard 2003-05-02 21:24:44 +00:00
parent b5754fc86f
commit 6da201fddf
1 changed files with 5 additions and 0 deletions

View File

@ -1702,4 +1702,9 @@ enum DbgInfoLoad DEBUG_ReadExecutableDbgInfo(const char* exe_name)
return FALSE;
}
int read_elf_info(const char* filename, unsigned long tab[])
{
return 0;
}
#endif /* __ELF__ */