You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
458 B

extern crate libloading;
extern crate libc;
extern crate static_assertions;
#[cfg(all(test, unix))]
mod unix {
use super::static_assertions::const_assert_eq;
const_assert_eq!(libloading::os::unix::RTLD_LOCAL, libc::RTLD_LOCAL);
const_assert_eq!(libloading::os::unix::RTLD_GLOBAL, libc::RTLD_GLOBAL);
const_assert_eq!(libloading::os::unix::RTLD_NOW, libc::RTLD_NOW);
const_assert_eq!(libloading::os::unix::RTLD_LAZY, libc::RTLD_LAZY);
}