From 3cad2919622e6dbab273fdf772b8bf33653553b9 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 1 Oct 1999 15:55:30 +0000 Subject: Addition of more functionality by Eric Norum to support GNU readline. --- c/src/lib/libc/tcflow.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 c/src/lib/libc/tcflow.c (limited to 'c/src/lib/libc/tcflow.c') diff --git a/c/src/lib/libc/tcflow.c b/c/src/lib/libc/tcflow.c new file mode 100644 index 0000000000..bbe60d94be --- /dev/null +++ b/c/src/lib/libc/tcflow.c @@ -0,0 +1,33 @@ +/* + * tcflow() - POSIX 1003.1b 7.2.2 - Line Control Functions + * + * 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 tcflow (int fd, int action) +{ + return 0; +} + +#endif -- cgit v1.2.3