From e957a260c9731667da3a343021dfe423d01a4770 Mon Sep 17 00:00:00 2001 From: kib Date: Tue, 4 Dec 2007 12:18:43 +0000 Subject: The __used (== __attribute__((__used)) ) silences the warning produced by unreferenced symbol. Apply __used instead of rev. 1.5. Requested by: kan --- lib/csu/common/crtbrand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/csu') 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, -- cgit v1.1