diff options
Diffstat (limited to 'libgloss/fstat.c')
-rw-r--r-- | libgloss/fstat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libgloss/fstat.c b/libgloss/fstat.c index e7f9133..c9d14d1 100644 --- a/libgloss/fstat.c +++ b/libgloss/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 */ |