1pub static mut stbi__g_failure_reason: &str = ""; 2 3pub unsafe fn stbi__err(s: &'static str) -> i32 { 4 stbi__g_failure_reason = s; 5 return 0; 6}