2005-11-03 Jeff Johnston <jjohnstn@redhat.com>

* libc/unix/getcwd.c: Don't use non-reentrant syscall names.
        * libc/unix/getlogin.c: Ditto.
        * libc/unix/getpass.c: Ditto.
        * libc/unix/getut.c: Ditto.
        * libc/unix/ttyname.c: Ditto.
This commit is contained in:
Jeff Johnston
2005-11-03 20:47:50 +00:00
parent d31a862312
commit 15eaca1c3f
6 changed files with 29 additions and 21 deletions

View File

@@ -62,13 +62,13 @@ ttyname (fd)
return NULL;
/* Must be a character device. */
if (_fstat (fd, &sb) || !S_ISCHR (sb.st_mode))
if (fstat (fd, &sb) || !S_ISCHR (sb.st_mode))
return NULL;
if ((dp = _opendir (_PATH_DEV)) == NULL)
if ((dp = opendir (_PATH_DEV)) == NULL)
return NULL;
while ((dirp = _readdir (dp)) != NULL)
while ((dirp = readdir (dp)) != NULL)
{
if (dirp->d_ino != sb.st_ino)
continue;
@@ -76,9 +76,9 @@ ttyname (fd)
if (stat (buf, &dsb) || sb.st_dev != dsb.st_dev ||
sb.st_ino != dsb.st_ino)
continue;
(void) _closedir (dp);
(void) closedir (dp);
return buf;
}
(void) _closedir (dp);
(void) closedir (dp);
return NULL;
}