summaryrefslogtreecommitdiffstats
path: root/lib/csu
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2007-12-04 12:18:43 +0000
committerkib <kib@FreeBSD.org>2007-12-04 12:18:43 +0000
commite957a260c9731667da3a343021dfe423d01a4770 (patch)
tree8e533af5dfb681876ab63402d15f7d01c0c2b7d0 /lib/csu
parent8cda75e035f9397ea064196b9b00f3fe061d044c (diff)
downloadFreeBSD-src-e957a260c9731667da3a343021dfe423d01a4770.zip
FreeBSD-src-e957a260c9731667da3a343021dfe423d01a4770.tar.gz
The __used (== __attribute__((__used)) ) silences the warning produced
by unreferenced symbol. Apply __used instead of rev. 1.5. Requested by: kan
Diffstat (limited to 'lib/csu')
-rw-r--r--lib/csu/common/crtbrand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/csu/common/crtbrand.c b/lib/csu/common/crtbrand.c
index 449a837..684a48e 100644
--- a/lib/csu/common/crtbrand.c
+++ b/lib/csu/common/crtbrand.c
@@ -43,7 +43,7 @@ static const struct {
int32_t type;
char name[sizeof ABI_VENDOR];
int32_t desc;
-} abitag __attribute__ ((section (ABI_SECTION), aligned(4), used)) __unused = {
+} abitag __attribute__ ((section (ABI_SECTION), aligned(4))) __used = {
sizeof ABI_VENDOR,
sizeof(int32_t),
ABI_NOTETYPE,
OpenPOWER on IntegriCloud