fix clobber of edx in i386 vsyscall asm
[musl] / src / sched / sched_getparam.c
1 #include <sched.h>
2 #include "syscall.h"
3
4 int sched_getparam(pid_t pid, struct sched_param *param)
5 {
6         return syscall(SYS_sched_getparam, pid, param);
7 }