xref: /dragonfly/lib/csu/common/notes.h (revision e2d7e866)
17ddb295fSJohn Marino /*-
27ddb295fSJohn Marino  * Copyright 2012 Konstantin Belousov <kib@FreeBSD.org>
37ddb295fSJohn Marino  * All rights reserved.
47ddb295fSJohn Marino  *
57ddb295fSJohn Marino  * Redistribution and use in source and binary forms, with or without
67ddb295fSJohn Marino  * modification, are permitted provided that the following conditions
77ddb295fSJohn Marino  * are met:
87ddb295fSJohn Marino  * 1. Redistributions of source code must retain the above copyright
97ddb295fSJohn Marino  *    notice, this list of conditions and the following disclaimer.
107ddb295fSJohn Marino  * 2. Redistributions in binary form must reproduce the above copyright
117ddb295fSJohn Marino  *    notice, this list of conditions and the following disclaimer in the
127ddb295fSJohn Marino  *    documentation and/or other materials provided with the distribution.
137ddb295fSJohn Marino  *
147ddb295fSJohn Marino  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
157ddb295fSJohn Marino  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
167ddb295fSJohn Marino  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
177ddb295fSJohn Marino  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
187ddb295fSJohn Marino  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
197ddb295fSJohn Marino  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
207ddb295fSJohn Marino  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
217ddb295fSJohn Marino  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
227ddb295fSJohn Marino  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
237ddb295fSJohn Marino  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
247ddb295fSJohn Marino  *
257ddb295fSJohn Marino  * $FreeBSD$
267ddb295fSJohn Marino  */
277ddb295fSJohn Marino 
287ddb295fSJohn Marino #ifndef	CSU_COMMON_NOTES_H
297ddb295fSJohn Marino #define	CSU_COMMON_NOTES_H
307ddb295fSJohn Marino 
317ddb295fSJohn Marino #define NOTE_VENDOR		"DragonFly"
32*e2d7e866SJohn Marino #define NOTE_SECTION		".note.tag"
337ddb295fSJohn Marino #define ABI_NOTETYPE		1
347ddb295fSJohn Marino #define CRT_NOINIT_NOTETYPE	0x20
357ddb295fSJohn Marino 
367ddb295fSJohn Marino #endif
37