From 2b3e9d9b244e279ef5693a7cf5dacc7903164af5 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 22 Jul 2002 09:46:48 +0000 Subject: Remove, moved to cpukit. --- c/src/exec/libcsupport/src/fstat.c | 80 -------------------------------------- 1 file changed, 80 deletions(-) delete mode 100644 c/src/exec/libcsupport/src/fstat.c (limited to 'c/src/exec/libcsupport/src/fstat.c') diff --git a/c/src/exec/libcsupport/src/fstat.c b/c/src/exec/libcsupport/src/fstat.c deleted file mode 100644 index 22b1f8c412..0000000000 --- a/c/src/exec/libcsupport/src/fstat.c +++ /dev/null @@ -1,80 +0,0 @@ -/* - * fstat() - POSIX 1003.1b 5.6.2 - Get File Status - * - * 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. - * - * $Id$ - */ - -#if HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include -#include - -#include -#include - -int fstat( - int fd, - struct stat *sbuf -) -{ - rtems_libio_t *iop; - - /* - * Check to see if we were passed a valid pointer. - */ - - if ( !sbuf ) - rtems_set_errno_and_return_minus_one( EFAULT ); - - /* - * Now process the stat() request. - */ - - iop = rtems_libio_iop( fd ); - rtems_libio_check_fd( fd ); - rtems_libio_check_is_open(iop); - - if ( !iop->handlers ) - rtems_set_errno_and_return_minus_one( EBADF ); - - if ( !iop->handlers->fstat_h ) - rtems_set_errno_and_return_minus_one( ENOTSUP ); - - /* - * Zero out the stat structure so the various support - * versions of stat don't have to. - */ - memset( sbuf, 0, sizeof(struct stat) ); - - return (*iop->handlers->fstat_h)( &iop->pathinfo, sbuf ); -} - -/* - * _fstat_r - * - * This is the Newlib dependent reentrant version of fstat(). - */ - -#if defined(RTEMS_NEWLIB) - -#include - -int _fstat_r( - struct _reent *ptr, - int fd, - struct stat *buf -) -{ - return fstat( fd, buf ); -} -#endif -- cgit v1.2.3