blob: 66c50215c6b704eab940f788caec9d95239493bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <spawn.h>
int posix_spawnattr_getpgroup(const posix_spawnattr_t *restrict attr, pid_t *restrict pgrp)
{
*pgrp = attr->__pgrp;
return 0;
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|