mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-02 13:29:00 +00:00
13 lines
189 B
Rust
13 lines
189 B
Rust
#![crate_type = "cdylib"]
|
|
#![allow(internal_features)]
|
|
#![feature(no_core)]
|
|
#![no_std]
|
|
#![no_core]
|
|
|
|
extern crate export;
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn func() -> i32 {
|
|
export::VALUE
|
|
}
|