diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-06-05 19:07:11 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-06-05 19:07:11 +0000 |
commit | 304a3a85de8f845dd77315e30430e256926c1660 (patch) | |
tree | 026f5d1208dd1e5791ebdcebd7e08a77625ec0cb /libf2c/f2cext.c | |
parent | 540eaea8255b10f70aaeefb2820298334e4c8d1c (diff) | |
download | gcc-304a3a85de8f845dd77315e30430e256926c1660.tar.gz |
f2cext.c (alarm_): Mark parameter(s) with attribute `unused'.
* f2cext.c (alarm_): Mark parameter(s) with attribute `unused'.
* libF77/h_len.c (h_len): Likewise.
* libF77/i_len.c (i_len): Likewise.
* libI77/rsli.c (i_ungetc): Likewise.
* libU77/date_.c (G77_date_y2kbuggy_0): Likewise.
* libU77/fputc_.c (G77_fputc_0): Likewise.
* libU77/vxtidate_.c (G77_vxtidate_y2kbuggy_0): Likewise.
* libU77/vxttime_.c (G77_vxttime_0): Likewise.
From-SVN: r54289
Diffstat (limited to 'libf2c/f2cext.c')
-rw-r--r-- | libf2c/f2cext.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libf2c/f2cext.c b/libf2c/f2cext.c index 56f9490c6f5..69d12b6ea64 100644 --- a/libf2c/f2cext.c +++ b/libf2c/f2cext.c @@ -140,7 +140,8 @@ integer access_ (const char *name, const char *mode, ftnlen Lname, ftnlen Lmode) #endif #ifdef Lalarm -integer alarm_ (integer *seconds, sig_proc proc, integer *status) { +integer alarm_ (integer *seconds, sig_proc proc, + integer *status __attribute__ ((__unused__))) { extern integer G77_alarm_0 (integer *seconds, sig_proc proc); return G77_alarm_0 (seconds, proc); } |