mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
fix up minor misplacement of restrict keyword in spawnattr sched stubs
This commit is contained in:
parent
a57ac9bf64
commit
96fbcf7d80
1 changed files with 2 additions and 2 deletions
|
@ -14,12 +14,12 @@ int posix_spawnattr_setschedparam(posix_spawnattr_t *restrict attr,
|
|||
return ENOSYS;
|
||||
}
|
||||
|
||||
int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *restrict attr, int *policy)
|
||||
int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *restrict attr, int *restrict policy)
|
||||
{
|
||||
return ENOSYS;
|
||||
}
|
||||
|
||||
int posix_spawnattr_setschedpolicy(posix_spawnattr_t *restrict attr, int policy)
|
||||
int posix_spawnattr_setschedpolicy(posix_spawnattr_t *attr, int policy)
|
||||
{
|
||||
return ENOSYS;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue