diff options
Diffstat (limited to 'newlib/libc/posix/opendir.c')
-rw-r--r-- | newlib/libc/posix/opendir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/posix/opendir.c b/newlib/libc/posix/opendir.c index ce59cf4c8..c9a97dbf3 100644 --- a/newlib/libc/posix/opendir.c +++ b/newlib/libc/posix/opendir.c @@ -47,8 +47,8 @@ static char sccsid[] = "@(#)opendir.c 5.11 (Berkeley) 2/23/91"; * open a directory. */ DIR * -opendir(name) - const char *name; +_DEFUN(opendir, (name), + const char *name) { register DIR *dirp; register int fd; |