summaryrefslogtreecommitdiffstats
path: root/tests/rust/global_variable.rs
blob: 5fb85727721242a83f00d4c0bb5b1c2af062545b (plain)
1
2
3
4
5
#[no_mangle]
pub static mut MUT_GLOBAL_ARRAY: [c_char; 128] = [0; 128];

#[no_mangle]
pub static CONST_GLOBAL_ARRAY: [c_char; 128] = [0; 128];