diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-09 21:01:11 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-09 21:01:11 +0000 |
commit | 90af010a75a083f1b78a219c1f327b0b49392b2f (patch) | |
tree | 2a86380fbc75c19549392428d3cd27bebbd66f1e | |
parent | 4690332e6aead829e89dd910f68f45d6662dc386 (diff) |
(diskfs_S_fsys_getfile): Mark parms unused.
-rw-r--r-- | libdiskfs/fsys-getfile.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libdiskfs/fsys-getfile.c b/libdiskfs/fsys-getfile.c index 6a74ef3b..afa45149 100644 --- a/libdiskfs/fsys-getfile.c +++ b/libdiskfs/fsys-getfile.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1994 Free Software Foundation + Copyright (C) 1994, 1995 Free Software Foundation This file is part of the GNU Hurd. @@ -22,15 +22,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "priv.h" error_t -diskfs_S_fsys_getfile (mach_port_t fsys, - uid_t *gen_uids, - u_int ngen_uids, - uid_t *gen_gids, - u_int ngen_gids, - char *handle, - u_int handlelen, - mach_port_t *file, - mach_msg_type_name_t *filetype) +diskfs_S_fsys_getfile (mach_port_t fsys __attribute__ ((unused)), + uid_t *gen_uids __attribute__ ((unused)), + u_int ngen_uids __attribute__ ((unused)), + uid_t *gen_gids __attribute__ ((unused)), + u_int ngen_gids __attribute__ ((unused)), + char *handle __attribute__ ((unused)), + u_int handlelen __attribute__ ((unused)), + mach_port_t *file __attribute__ ((unused)), + mach_msg_type_name_t *filetype __attribute__ ((unused))) { return EOPNOTSUPP; } |