summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-06-09 21:46:03 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-06-09 21:46:03 +0000
commit272ad540b38ac7753f262a3709d5a25b842b8869 (patch)
tree3fe4e64c0900eaddaa0570917173e328c40827b4
parent14e1bb500226e3c55b60526d394473754c2759b7 (diff)
Mark all parms to all functions unused.
-rw-r--r--libdiskfs/notify-stubs.c44
1 files changed, 29 insertions, 15 deletions
diff --git a/libdiskfs/notify-stubs.c b/libdiskfs/notify-stubs.c
index 1567d1b7..ddb98330 100644
--- a/libdiskfs/notify-stubs.c
+++ b/libdiskfs/notify-stubs.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1994 Free Software Foundation
+ Copyright (C) 1994, 1995 Free Software Foundation
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
@@ -18,40 +18,54 @@
#include "priv.h"
error_t
-diskfs_do_seqnos_mach_notify_port_deleted (mach_port_t notify,
- mach_port_seqno_t seqno,
- mach_port_t name)
+diskfs_do_seqnos_mach_notify_port_deleted (mach_port_t notify
+ __attribute__ ((unused)),
+ mach_port_seqno_t seqno
+ __attribute__ ((unused)),
+ mach_port_t name
+ __attribute__ ((unused)))
{
return 0;
}
error_t
-diskfs_do_seqnos_mach_notify_msg_accepted (mach_port_t notify,
- mach_port_seqno_t seqno,
- mach_port_t name)
+diskfs_do_seqnos_mach_notify_msg_accepted (mach_port_t notify
+ __attribute__ ((unused)),
+ mach_port_seqno_t seqno
+ __attribute__ ((unused)),
+ mach_port_t name
+ __attribute__ ((unused)))
{
return 0;
}
error_t
-diskfs_do_seqnos_mach_notify_port_destroyed (mach_port_t notify,
- mach_port_seqno_t seqno,
- mach_port_t name)
+diskfs_do_seqnos_mach_notify_port_destroyed (mach_port_t notify
+ __attribute__ ((unused)),
+ mach_port_seqno_t seqno
+ __attribute__ ((unused)),
+ mach_port_t name
+ __attribute__ ((unused)))
{
return 0;
}
error_t
-diskfs_do_seqnos_mach_notify_send_once (mach_port_t notify,
- mach_port_seqno_t seqno)
+diskfs_do_seqnos_mach_notify_send_once (mach_port_t notify
+ __attribute__ ((unused)),
+ mach_port_seqno_t seqno
+ __attribute__ ((unused)))
{
return 0;
}
error_t
-diskfs_do_seqnos_mach_notify_dead_name (mach_port_t notify,
- mach_port_seqno_t seqno,
- mach_port_t name)
+diskfs_do_seqnos_mach_notify_dead_name (mach_port_t notify
+ __attribute__ ((unused)),
+ mach_port_seqno_t seqno
+ __attribute__ ((unused)),
+ mach_port_t name
+ __atribute__ ((unused)))
{
return 0;
}