diff options
Diffstat (limited to 'newlib/libc/unix/ttyname_r.c')
-rw-r--r-- | newlib/libc/unix/ttyname_r.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/unix/ttyname_r.c b/newlib/libc/unix/ttyname_r.c index 673e7f5..fd3b504 100644 --- a/newlib/libc/unix/ttyname_r.c +++ b/newlib/libc/unix/ttyname_r.c @@ -44,8 +44,7 @@ * ttyname_r() - POSIX 1003.1b 4.7.2 - Determine Terminal Device Name */ int -_DEFUN( ttyname_r,(fd, name, namesize), - int fd, + ttyname_r (int fd, char *name, size_t namesize) { |