diff options
Diffstat (limited to 'third_party/rust/object/src/write/elf/mod.rs')
-rw-r--r-- | third_party/rust/object/src/write/elf/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/rust/object/src/write/elf/mod.rs b/third_party/rust/object/src/write/elf/mod.rs new file mode 100644 index 0000000000..3a4f3716e8 --- /dev/null +++ b/third_party/rust/object/src/write/elf/mod.rs @@ -0,0 +1,9 @@ +//! Support for writing ELF files. +//! +//! Provides [`Writer`] for low level writing of ELF files. +//! This is also used to provide ELF support for [`write::Object`](crate::write::Object). + +mod object; + +mod writer; +pub use writer::*; |