From 166475ad3db4bed5e8ee5b5c97816df365c10da1 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 17 May 2002 18:33:07 +0000 Subject: 2002-05-15 Ralf Corsepius * configure.ac: Remove lib. --- c/src/lib/libc/telldir.c | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 c/src/lib/libc/telldir.c (limited to 'c/src/lib/libc/telldir.c') diff --git a/c/src/lib/libc/telldir.c b/c/src/lib/libc/telldir.c deleted file mode 100644 index 81c9606ebf..0000000000 --- a/c/src/lib/libc/telldir.c +++ /dev/null @@ -1,47 +0,0 @@ -/* - * telldir() - XXX - * - * COPYRIGHT (c) 1989-1999. - * On-Line Applications Research Corporation (OAR). - * - * 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. - * - */ - -#if HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#include -#include -#include -#include - -#include -#include - -long telldir( - DIR *dirp -) -{ - rtems_libio_t *iop; - - if ( !dirp ) - rtems_set_errno_and_return_minus_one( EBADF ); - - /* - * Get the file control block structure associated with the - * file descriptor - */ - - iop = rtems_libio_iop( dirp->dd_fd ); - - if (iop == NULL) - assert(0); - - return (long)( iop->offset ); -} -- cgit v1.2.3