feof.c (333fc21e3cd79bca0c94d7722c5a56cb5ad078d1) | feof.c (567d74a5eced82896bce42c1181f3335f45cbcac) |
---|---|
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 --- 31 unchanged lines hidden (view full) --- 40#include <sys/cdefs.h> 41__FBSDID("$FreeBSD$"); 42 43#include "namespace.h" 44#include <stdio.h> 45#include "un-namespace.h" 46#include "libc_private.h" 47 | 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 --- 31 unchanged lines hidden (view full) --- 40#include <sys/cdefs.h> 41__FBSDID("$FreeBSD$"); 42 43#include "namespace.h" 44#include <stdio.h> 45#include "un-namespace.h" 46#include "libc_private.h" 47 |
48/* 49 * feof has traditionally been a macro in <stdio.h>. That is no 50 * longer true because it needs to be thread-safe. 51 * 52 * #undef feof 53 */ | 48#undef feof 49 |
54int 55feof(FILE *fp) 56{ 57 int ret; 58 59 FLOCKFILE(fp); 60 ret= __sfeof(fp); 61 FUNLOCKFILE(fp); 62 return (ret); 63} | 50int 51feof(FILE *fp) 52{ 53 int ret; 54 55 FLOCKFILE(fp); 56 ret= __sfeof(fp); 57 FUNLOCKFILE(fp); 58 return (ret); 59} |