math: move x86_64 exp2l implementation to exp2l.s from expl.s
[musl] / src / unistd / setpgrp.c
1 #include <unistd.h>
2
3 pid_t setpgrp(void)
4 {
5         return setpgid(0, 0);
6 }