1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00
* sunrpc/clnt_unix.c (clntunix_destroy): Use __close not close.
	* libio/oldtmpfile.c: Likewise.
	* libio/oldiofdopen.c: Use __fcntl instead fcntl.
	* sysdeps/posix/profil.c: Use __sigaction instead of sigaction.

	* login/login.c: Determine pts/3 as terminal name if path is
This commit is contained in:
Ulrich Drepper
1998-12-17 13:58:32 +00:00
parent 0937645101
commit c0b50509ef
5 changed files with 13 additions and 8 deletions

View File

@@ -43,7 +43,7 @@ __old_tmpfile (void)
(void) remove (buf);
if ((f = _IO_old_fdopen (fd, "w+b")) == NULL)
close (fd);
__close (fd);
return f;
}