| Index: fusl/src/process/posix_spawnattr_getsigdefault.c
|
| diff --git a/fusl/src/process/posix_spawnattr_getsigdefault.c b/fusl/src/process/posix_spawnattr_getsigdefault.c
|
| index a49050aa4f7cdc7bbf9b6f3fc738ea74de0b8ca0..7ec60776ce40fe33da9a3007b688a7d4d7ad14f3 100644
|
| --- a/fusl/src/process/posix_spawnattr_getsigdefault.c
|
| +++ b/fusl/src/process/posix_spawnattr_getsigdefault.c
|
| @@ -1,7 +1,7 @@
|
| #include <spawn.h>
|
|
|
| -int posix_spawnattr_getsigdefault(const posix_spawnattr_t *restrict attr, sigset_t *restrict def)
|
| -{
|
| - *def = attr->__def;
|
| - return 0;
|
| +int posix_spawnattr_getsigdefault(const posix_spawnattr_t* restrict attr,
|
| + sigset_t* restrict def) {
|
| + *def = attr->__def;
|
| + return 0;
|
| }
|
|
|