| Index: fusl/src/process/posix_spawnattr_getpgroup.c
|
| diff --git a/fusl/src/process/posix_spawnattr_getpgroup.c b/fusl/src/process/posix_spawnattr_getpgroup.c
|
| index 0480527d6fa79a76507357366f38a5de7ce3c420..163c628cd9aa85fbd1d216562d88d0f79ff8de13 100644
|
| --- a/fusl/src/process/posix_spawnattr_getpgroup.c
|
| +++ b/fusl/src/process/posix_spawnattr_getpgroup.c
|
| @@ -1,7 +1,7 @@
|
| #include <spawn.h>
|
|
|
| -int posix_spawnattr_getpgroup(const posix_spawnattr_t *restrict attr, pid_t *restrict pgrp)
|
| -{
|
| - *pgrp = attr->__pgrp;
|
| - return 0;
|
| +int posix_spawnattr_getpgroup(const posix_spawnattr_t* restrict attr,
|
| + pid_t* restrict pgrp) {
|
| + *pgrp = attr->__pgrp;
|
| + return 0;
|
| }
|
|
|