Subject: re: CVS commit: src/usr.bin/config
To: matthew green <mrg@eterna.com.au>
From: Christos Zoulas <christos@zoulas.com>
List: source-changes
Date: 05/14/2006 23:46:07
On May 15, 1:31pm, mrg@eterna.com.au (matthew green) wrote:
-- Subject: re: CVS commit: src/usr.bin/config
| hmmm... older GCC's want the unused attribute. i've had this problem
| in the past. i'm not sure this change is good enough...? perhaps it
| should only use "used" with gcc major >= 4?
I think 3.3 is ok. I am not sure about 2.95... This is the same problem
with mcount.c:
#ifdef __vax__
__attribute__((__unused__)); /* see below. */
#else
__attribute__((__used__)); /* see below. */
#endif
christos