fn test_one_divmodsi4(a: i32, b: i32, expected_q: i32, expected_r: i32) !void
fn test_one_divmodsi4(a: i32, b: i32, expected_q: i32, expected_r: i32) !void { var r: i32 = undefined; const q: i32 = __divmodsi4(a, b, &r); try testing.expect(q == expected_q and r == expected_r); }