diff options
author | rsc <devnull@localhost> | 2005-01-07 20:45:11 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-01-07 20:45:11 +0000 |
commit | 8b549a62142839c7e184939fe56850987dded578 (patch) | |
tree | a4a3b9c9b28593b366e099815e6c4cba4ac57c2d /include | |
parent | 1ab0f6f00bbbb313ddc79f3905546124363079d6 (diff) | |
download | plan9port-8b549a62142839c7e184939fe56850987dded578.tar.gz plan9port-8b549a62142839c7e184939fe56850987dded578.tar.bz2 plan9port-8b549a62142839c7e184939fe56850987dded578.zip |
symopen
Diffstat (limited to 'include')
-rw-r--r-- | include/mach.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mach.h b/include/mach.h index 62fcf73a..79d8ac08 100644 --- a/include/mach.h +++ b/include/mach.h @@ -293,11 +293,12 @@ void uncrackhdr(Fhdr *hdr); int crackelf(int fd, Fhdr *hdr); int crackmacho(int fd, Fhdr *hdr); -int syminit(Fhdr*); +int symopen(Fhdr*); int symdwarf(Fhdr*); int symelf(Fhdr*); int symstabs(Fhdr*); int symmacho(Fhdr*); +void symclose(Fhdr*); int mapfile(Fhdr *fp, ulong base, Map *map, Regs **regs); void unmapfile(Fhdr *fp, Map *map); |