diff options
Diffstat (limited to 'lib/libc/stdio/fclose.c')
-rw-r--r-- | lib/libc/stdio/fclose.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/libc/stdio/fclose.c b/lib/libc/stdio/fclose.c index be9210801b50..8315c3cf41ea 100644 --- a/lib/libc/stdio/fclose.c +++ b/lib/libc/stdio/fclose.c @@ -42,12 +42,7 @@ static char sccsid[] = "@(#)fclose.c 8.1 (Berkeley) 6/4/93"; #include <stdio.h> #include <stdlib.h> #include "local.h" -#ifdef _THREAD_SAFE -#include <pthread.h> -#include "pthread_private.h" -#endif -int fclose(fp) register FILE *fp; { @@ -57,9 +52,6 @@ fclose(fp) errno = EBADF; return (EOF); } -#ifdef _THREAD_SAFE - _thread_flockfile(fp,__FILE__,__LINE__); -#endif r = fp->_flags & __SWR ? __sflush(fp) : 0; if (fp->_close != NULL && (*fp->_close)(fp->_cookie) < 0) r = EOF; @@ -69,11 +61,7 @@ fclose(fp) FREEUB(fp); if (HASLB(fp)) FREELB(fp); -#ifdef _THREAD_SAFE - _thread_funlockfile(fp); -#endif fp->_flags = 0; /* Release this FILE for reuse. */ - fp->_file = -1; fp->_r = fp->_w = 0; /* Mess up if reaccessed. */ return (r); } |