xref: /netbsd/usr.sbin/lockstat/elf64.c (revision 297f4619)
1*297f4619Sad /*	$NetBSD: elf64.c,v 1.1 2006/09/07 00:50:45 ad Exp $	*/
2*297f4619Sad 
3*297f4619Sad /*
4*297f4619Sad  * Copyright (c) 1996 Christopher G. Demetriou
5*297f4619Sad  * All rights reserved.
6*297f4619Sad  *
7*297f4619Sad  * Redistribution and use in source and binary forms, with or without
8*297f4619Sad  * modification, are permitted provided that the following conditions
9*297f4619Sad  * are met:
10*297f4619Sad  * 1. Redistributions of source code must retain the above copyright
11*297f4619Sad  *    notice, this list of conditions and the following disclaimer.
12*297f4619Sad  * 2. Redistributions in binary form must reproduce the above copyright
13*297f4619Sad  *    notice, this list of conditions and the following disclaimer in the
14*297f4619Sad  *    documentation and/or other materials provided with the distribution.
15*297f4619Sad  * 3. All advertising materials mentioning features or use of this software
16*297f4619Sad  *    must display the following acknowledgement:
17*297f4619Sad  *          This product includes software developed for the
18*297f4619Sad  *          NetBSD Project.  See http://www.NetBSD.org/ for
19*297f4619Sad  *          information about NetBSD.
20*297f4619Sad  * 4. The name of the author may not be used to endorse or promote products
21*297f4619Sad  *    derived from this software without specific prior written permission.
22*297f4619Sad  *
23*297f4619Sad  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24*297f4619Sad  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25*297f4619Sad  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26*297f4619Sad  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27*297f4619Sad  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28*297f4619Sad  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29*297f4619Sad  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30*297f4619Sad  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31*297f4619Sad  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32*297f4619Sad  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33*297f4619Sad  *
34*297f4619Sad  * <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
35*297f4619Sad  */
36*297f4619Sad 
37*297f4619Sad #include <sys/cdefs.h>
38*297f4619Sad #if !defined(lint)
39*297f4619Sad __RCSID("$NetBSD: elf64.c,v 1.1 2006/09/07 00:50:45 ad Exp $");
40*297f4619Sad #endif /* not lint */
41*297f4619Sad 
42*297f4619Sad #define	ELFSIZE		64
43*297f4619Sad 
44*297f4619Sad #include "elf32.c"
45