Mercurial > crates > nonstick
diff libpam-sys/src/lib.rs @ 127:c77846f3a979
GET CTEST WORKING.
This will verify that the functions we're exporting are correct.
It has been a nightmare.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Mon, 30 Jun 2025 22:56:26 -0400 |
parents | 2b255c92417b |
children |
line wrap: on
line diff
--- a/libpam-sys/src/lib.rs Mon Jun 30 21:52:10 2025 -0400 +++ b/libpam-sys/src/lib.rs Mon Jun 30 22:56:26 2025 -0400 @@ -44,15 +44,11 @@ pub use libpam_sys_impls::cfg_pam_impl; mod constants; -// We get `funcs` from different places depending upon the PAM implementation. -// This is because -#[path = "funcs/xsso_base.rs"] -mod funcs; +mod ffi; pub mod helpers; -mod structs; #[doc(inline)] -pub use crate::{constants::*, funcs::*, structs::*}; +pub use crate::{constants::*, ffi::*}; // Looking for the actual code defining this enum? // It's in the build.rs file for libpam_sys_impls.