Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
iliana committed Oct 3, 2024
1 parent 7682acc commit 2d10a54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ compile_error!("pentacle only works on linux or android");
mod file;
mod syscall;

pub use crate::file::{MustSealError, SealOptions};

use std::fmt::{self, Debug};
use std::fs::File;
use std::io::{self, Error, Read, Write};
Expand All @@ -50,6 +48,8 @@ use std::os::unix::io::AsRawFd;
use std::os::unix::process::CommandExt;
use std::process::Command;

pub use crate::file::{MustSealError, SealOptions};

const OPTIONS: SealOptions<'static> = SealOptions::new().executable(true);

/// Ensure the currently running program is a sealed anonymous file.
Expand Down

0 comments on commit 2d10a54

Please sign in to comment.