1use rustix::process::sched_yield;
2
3#[test]
4fn test_sched_yield() {
5    // Just make sure we can call it.
6    sched_yield();
7}
8