mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 19:32:02 +00:00
8 lines
92 B
Rust
8 lines
92 B
Rust
extern crate dylib;
|
|
extern crate rlib;
|
|
|
|
fn main() {
|
|
dylib::dylib();
|
|
rlib::rlib();
|
|
}
|