dynlink_posix/
lib.rs

1//! POSIX dynamic linking.
2//!
3//! This library binds around <dlfcn.h> and provides a more memory-safe API
4//! that allows dynamic linking shared objects, and use the data and functions they contains.
5
6#[cfg(any(
7    target_os = "linux",
8    target_os = "android",
9    target_os = "macos",
10    target_os = "ios",
11    target_os = "freebsd",
12    target_os = "openbsd",
13    target_os = "netbsd",
14    target_os = "dragonfly",
15    target_os = "solaris",
16    target_os = "illumos",
17    target_os = "haiku",
18))]
19pub mod symtab;