diff options
Diffstat (limited to 'sys/lib/libsa/ufs.h')
-rw-r--r-- | sys/lib/libsa/ufs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libsa/ufs.h b/sys/lib/libsa/ufs.h index c17823d9741..a919b00ccc2 100644 --- a/sys/lib/libsa/ufs.h +++ b/sys/lib/libsa/ufs.h @@ -1,4 +1,4 @@ -/* $NetBSD: ufs.h,v 1.3 1995/09/17 00:49:50 pk Exp $ */ +/* $NetBSD: ufs.h,v 1.5 1995/10/20 01:35:25 cgd Exp $ */ /*- * Copyright (c) 1993 @@ -38,8 +38,8 @@ int ufs_open __P((char *path, struct open_file *f)); int ufs_close __P((struct open_file *f)); int ufs_read __P((struct open_file *f, void *buf, - u_int size, u_int *resid)); + size_t size, size_t *resid)); int ufs_write __P((struct open_file *f, void *buf, - u_int size, u_int *resid)); + size_t size, size_t *resid)); off_t ufs_seek __P((struct open_file *f, off_t offset, int where)); int ufs_stat __P((struct open_file *f, struct stat *sb)); |