diff options
author | kib <kib@FreeBSD.org> | 2007-12-04 12:18:43 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2007-12-04 12:18:43 +0000 |
commit | e957a260c9731667da3a343021dfe423d01a4770 (patch) | |
tree | 8e533af5dfb681876ab63402d15f7d01c0c2b7d0 /lib/csu/common | |
parent | 8cda75e035f9397ea064196b9b00f3fe061d044c (diff) | |
download | FreeBSD-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/common')
-rw-r--r-- | lib/csu/common/crtbrand.c | 2 |
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, |