clean up sloppy nested inclusion from pthread_impl.h
[oweals/musl.git] / src / thread / pthread_attr_getschedparam.c
1 #include "pthread_impl.h"
2
3 int pthread_attr_getschedparam(const pthread_attr_t *restrict a, struct sched_param *restrict param)
4 {
5         param->sched_priority = 0;
6         return 0;
7 }