1 2 3 4 5 6 7
use std::fs::File; use crate::{MkLinker, Result}; pub(crate) fn arch_write_linker(_: &mut File, _: &MkLinker) -> Result<()> { Err(crate::MlError::UnImpl) }