Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/unix/ttyname.c')
-rw-r--r--newlib/libc/unix/ttyname.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/unix/ttyname.c b/newlib/libc/unix/ttyname.c
index 558f70939..09f12a337 100644
--- a/newlib/libc/unix/ttyname.c
+++ b/newlib/libc/unix/ttyname.c
@@ -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;
}