]> git.proxmox.com Git - rustc.git/blame - vendor/object-0.31.1/src/read/xcoff/mod.rs
New upstream version 1.73.0+dfsg1
[rustc.git] / vendor / object-0.31.1 / src / read / xcoff / mod.rs
CommitLineData
49aad941 1//! Support for reading AIX XCOFF files.
9c376795 2//!
49aad941 3//! Provides `XcoffFile` and related types which implement the `Object` trait.
9c376795
FG
4
5mod file;
6pub use file::*;
7
8mod section;
9pub use section::*;
10
11mod symbol;
12pub use symbol::*;
13
14mod relocation;
15pub use relocation::*;
16
17mod comdat;
18pub use comdat::*;
49aad941
FG
19
20mod segment;
21pub use segment::*;