blob: 78fe5e1bded068092a041f3cc579a8d42fd550ae [file] [log] [blame]
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
/* Set the foreground process group ID of FD set PGRP_ID. */
int
tcsetpgrp (fd, pgrp_id)
int fd;
pid_t pgrp_id;
{
if (fd < 0)
{
_set_errno (EBADF);
return -1;
}
_set_errno (ENOSYS);
return 0;
}