diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-17 07:51:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-17 07:51:36 +0000 |
commit | 6293b80374f7c7b017515b9a8716a9ea16eb063a (patch) | |
tree | e2c8c00c351a5da2e44e534f298c65901e085303 /libio/freopen64.c | |
parent | 51028f34ceeb7c4c91abc2ac2b818afeaa671b91 (diff) | |
download | glibc-6293b80374f7c7b017515b9a8716a9ea16eb063a.tar.gz |
Update.
2001-08-17 Ulrich Drepper <drepper@redhat.com>
* sunrpc/svc_simple.c (universal): Use __write instead of write.
* wcsmbs/wcscoll.c: Also define __wcscoll.
* include/wchar.h: Declare __wcscoll.
* libio/fwprintf.c: Use __vfwprintf instead of vfwprintf.
* libio/vwprintf.c: Likewise.
* libio/wprintf.c: Likewise.
* iconv/gconv_cache.c: Use __munmap instead of munmap.
* posix/regex.c [_LIBC] (convert_mbs_to_wcs): Use __mbrtowc
instead of mbrtowc.
[_LIBC]: Use __iswctype instead of iswctype, __wcslen instead of
wcslen, and __wcscoll instead of wcscoll.
* sysdeps/unix/sockatmark.c (sockatmark): Use __ioctl instead of ioctl.
* sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue): Use
__getuid instead of getuid.
* stdio-common/perror.c (perror): Use __close instead of close.
* iconv/gconv_cache.c (__gconv_load_cache): Likewise.
* libio/freopen.c (freopen): Likewise.
* libio/freopen64.c (freopen64): Likewise.
Diffstat (limited to 'libio/freopen64.c')
-rw-r--r-- | libio/freopen64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/freopen64.c b/libio/freopen64.c index 28cfb79df7..941eda0aa9 100644 --- a/libio/freopen64.c +++ b/libio/freopen64.c @@ -47,7 +47,7 @@ freopen64 (filename, mode, fp) _IO_flockfile (fp); if (filename == NULL && _IO_fileno (fp) >= 0) { - fd = dup (_IO_fileno (fp)); + fd = __dup (_IO_fileno (fp)); if (fd != -1) filename = fd_to_filename (fd); } @@ -57,7 +57,7 @@ freopen64 (filename, mode, fp) result->_mode = 0; if (fd != -1) { - close (fd); + __close (fd); if (filename != NULL) free ((char *) filename); } |