ferror.c (9915c09cf91756410e2e028599e9a7348944e127) | ferror.c (ce51cf0392a0b2cc80e5ddcdb01394a303093443) |
---|---|
1/*- 2 * Copyright (c) 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Chris Torek. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 21 unchanged lines hidden (view full) --- 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 * SUCH DAMAGE. 35 */ 36 37#if defined(LIBC_SCCS) && !defined(lint) | 1/*- 2 * Copyright (c) 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Chris Torek. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 21 unchanged lines hidden (view full) --- 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 * SUCH DAMAGE. 35 */ 36 37#if defined(LIBC_SCCS) && !defined(lint) |
38#if 0 |
|
38static char sccsid[] = "@(#)ferror.c 8.1 (Berkeley) 6/4/93"; | 39static char sccsid[] = "@(#)ferror.c 8.1 (Berkeley) 6/4/93"; |
40#endif 41static const char rcsid[] = 42 "$Id$"; |
|
39#endif /* LIBC_SCCS and not lint */ 40 41#include <stdio.h> 42 43/* 44 * A subroutine version of the macro ferror. 45 */ 46#undef ferror 47 | 43#endif /* LIBC_SCCS and not lint */ 44 45#include <stdio.h> 46 47/* 48 * A subroutine version of the macro ferror. 49 */ 50#undef ferror 51 |
48int ferror(fp) | 52int 53ferror(fp) |
49 FILE *fp; 50{ 51 return (__sferror(fp)); 52} | 54 FILE *fp; 55{ 56 return (__sferror(fp)); 57} |