Home | History | Annotate | Download | only in Stdio
      1 /** @file
      2     Implementation of a subroutine version of the macro ferror,
      3     as declared in <stdio.h>.
      4 
      5     Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
      6     This program and the accompanying materials are licensed and made available
      7     under the terms and conditions of the BSD License that accompanies this
      8     distribution.  The full text of the license may be found at
      9     http://opensource.org/licenses/bsd-license.php.
     10 
     11     THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     12     WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     13 
     14     Copyright (c) 1990, 1993
     15     The Regents of the University of California.  All rights reserved.
     16 
     17     This code is derived from software contributed to Berkeley by
     18     Chris Torek.
     19 
     20     Redistribution and use in source and binary forms, with or without
     21     modification, are permitted provided that the following conditions
     22     are met:
     23       - Redistributions of source code must retain the above copyright
     24         notice, this list of conditions and the following disclaimer.
     25       - Redistributions in binary form must reproduce the above copyright
     26         notice, this list of conditions and the following disclaimer in the
     27         documentation and/or other materials provided with the distribution.
     28       - Neither the name of the University nor the names of its contributors
     29         may be used to endorse or promote products derived from this software
     30         without specific prior written permission.
     31 
     32     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
     33     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     34     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     35     ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
     36     LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     37     CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     38     SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     39     INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     40     CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     41     ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     42     POSSIBILITY OF SUCH DAMAGE.
     43 
     44     NetBSD: ferror.c,v 1.11 2003/08/07 16:43:22 agc Exp
     45     ferror.c  8.1 (Berkeley) 6/4/93
     46 **/
     47 #include  <LibConfig.h>
     48 
     49 #include <assert.h>
     50 #include <stdio.h>
     51 #include  <errno.h>
     52 #include "reentrant.h"
     53 #include "local.h"
     54 
     55 #undef ferror
     56 
     57 int
     58 ferror(FILE *fp)
     59 {
     60   int r;
     61 
     62   _DIAGASSERT(fp != NULL);
     63   if(fp == NULL) {
     64     errno = EINVAL;
     65     return (EOF);
     66   }
     67 
     68   FLOCKFILE(fp);
     69   r = __sferror(fp);
     70   FUNLOCKFILE(fp);
     71   return r;
     72 }
     73