diff options
Diffstat (limited to 'src/unistd/tcsetpgrp.c')
| -rw-r--r-- | src/unistd/tcsetpgrp.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/unistd/tcsetpgrp.c b/src/unistd/tcsetpgrp.c new file mode 100644 index 00000000..e3cfe023 --- /dev/null +++ b/src/unistd/tcsetpgrp.c @@ -0,0 +1,13 @@ +#include "stddef.h" +#include "sys/types.h" +#include <unistd.h> + +int tcsetpgrp(int fildes, pid_t pgid_id) +{ + (void)fildes; (void)pgid_id; + return 0; +} + +/* +POSIX(1) +*/ |
