diff options
Diffstat (limited to 'libgloss/ft32/fstat.c')
-rw-r--r-- | libgloss/ft32/fstat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libgloss/ft32/fstat.c b/libgloss/ft32/fstat.c index 0bd432e..517d134 100644 --- a/libgloss/ft32/fstat.c +++ b/libgloss/ft32/fstat.c @@ -19,8 +19,7 @@ * fstat -- Since we have no file system, we just return an error. */ int -_DEFUN (_fstat, (fd, buf), - int fd, +_fstat (int fd, struct stat *buf) { buf->st_mode = S_IFCHR; /* Always pretend to be a tty */ |