From c7016198fa34f63e0dd2c8f68443ce2a4170fd79 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 16 Nov 1999 15:27:52 +0000 Subject: Added. --- c/src/lib/libc/tcsetpgrp.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 c/src/lib/libc/tcsetpgrp.c (limited to 'c/src/lib/libc/tcsetpgrp.c') diff --git a/c/src/lib/libc/tcsetpgrp.c b/c/src/lib/libc/tcsetpgrp.c new file mode 100644 index 0000000000..3e6c32c9c4 --- /dev/null +++ b/c/src/lib/libc/tcsetpgrp.c @@ -0,0 +1,33 @@ +/* + * tcsetprgrp() - POSIX 1003.1b 7.2.4 - Set Foreground Process Group ID + * + * COPYRIGHT (c) 1989-1998. + * On-Line Applications Research Corporation (OAR). + * Copyright assigned to U.S. Government, 1994. + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.OARcorp.com/rtems/license.html. + * + * $Id$ + */ + +#include +#if defined(RTEMS_NEWLIB) + +#include +#include +#include +#include +/* #include */ + +int ioctl(); + +#include + +int tcsetprgrp(int fd, pid_t pid) +{ + return 0; +} + +#endif -- cgit v1.2.3