diff options
Diffstat (limited to 'newlib/libc/syscalls/sysfstat.c')
-rw-r--r-- | newlib/libc/syscalls/sysfstat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/syscalls/sysfstat.c b/newlib/libc/syscalls/sysfstat.c index 1ab7d62..c95e9aa 100644 --- a/newlib/libc/syscalls/sysfstat.c +++ b/newlib/libc/syscalls/sysfstat.c @@ -5,8 +5,7 @@ #include <unistd.h> int -_DEFUN (fstat, (fd, pstat), - int fd, +fstat (int fd, struct stat *pstat) { return _fstat_r (_REENT, fd, pstat); |