diff options
Diffstat (limited to 'newlib/libc/posix/readdir_r.c')
-rw-r--r-- | newlib/libc/posix/readdir_r.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/posix/readdir_r.c b/newlib/libc/posix/readdir_r.c index 805180cf5..9bc013c64 100644 --- a/newlib/libc/posix/readdir_r.c +++ b/newlib/libc/posix/readdir_r.c @@ -49,10 +49,10 @@ extern int getdents (int fd, void *dp, int count); * get next entry in a directory using supplied dirent structure. */ int -readdir_r(dirp, dp, dpp) - register DIR *dirp; - struct dirent *dp; - struct dirent **dpp; { +_DEFUN(readdir_r, (dirp, dp, dpp), + register DIR *dirp _AND + struct dirent *dp _AND + struct dirent **dpp) { struct dirent *tmpdp; |