diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2003-05-04 18:33:26 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2003-05-04 18:33:26 +0000 |
| commit | bbe4999bd190bc41d78a4c23b331a158a29ab8dc (patch) | |
| tree | 9f678df278f508de854d7eec6a72a826f02ee29f /lib/csu | |
| parent | 64ff745cf5be9d4374c4f81fec5794419b88672c (diff) | |
Notes
Diffstat (limited to 'lib/csu')
| -rw-r--r-- | lib/csu/common/crtbrand.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/csu/common/crtbrand.c b/lib/csu/common/crtbrand.c index 4c9afcadb732..9405f91af1b1 100644 --- a/lib/csu/common/crtbrand.c +++ b/lib/csu/common/crtbrand.c @@ -21,10 +21,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/param.h> #define ABI_VENDOR "FreeBSD" @@ -42,7 +43,7 @@ static const struct { int32_t type; char name[sizeof ABI_VENDOR]; int32_t desc; -} abitag __attribute__ ((section (ABI_SECTION))) = { +} abitag __attribute__ ((section (ABI_SECTION))) __unused = { sizeof ABI_VENDOR, sizeof(int32_t), ABI_NOTETYPE, |
