xref: /freebsd-src/usr.sbin/crunch/crunchide/exec_elf64.c (revision 1d386b48a555f61cb7325543adbbb5c3f3407a66)
12ec21a68SJordan K. Hubbard /*	$NetBSD: exec_elf64.c,v 1.2 1997/08/02 21:30:19 perry Exp $	*/
22ec21a68SJordan K. Hubbard 
3*1de7b4b8SPedro F. Giffuni /*-
4*1de7b4b8SPedro F. Giffuni  * SPDX-License-Identifier: BSD-4-Clause
5*1de7b4b8SPedro F. Giffuni  *
62ec21a68SJordan K. Hubbard  * Copyright (c) 1997 Christopher G. Demetriou.  All rights reserved.
72ec21a68SJordan K. Hubbard  *
82ec21a68SJordan K. Hubbard  * Redistribution and use in source and binary forms, with or without
92ec21a68SJordan K. Hubbard  * modification, are permitted provided that the following conditions
102ec21a68SJordan K. Hubbard  * are met:
112ec21a68SJordan K. Hubbard  * 1. Redistributions of source code must retain the above copyright
122ec21a68SJordan K. Hubbard  *    notice, this list of conditions and the following disclaimer.
132ec21a68SJordan K. Hubbard  * 2. Redistributions in binary form must reproduce the above copyright
142ec21a68SJordan K. Hubbard  *    notice, this list of conditions and the following disclaimer in the
152ec21a68SJordan K. Hubbard  *    documentation and/or other materials provided with the distribution.
162ec21a68SJordan K. Hubbard  * 3. All advertising materials mentioning features or use of this software
172ec21a68SJordan K. Hubbard  *    must display the following acknowledgement:
182ec21a68SJordan K. Hubbard  *      This product includes software developed by Christopher G. Demetriou
192ec21a68SJordan K. Hubbard  *	for the NetBSD Project.
202ec21a68SJordan K. Hubbard  * 4. The name of the author may not be used to endorse or promote products
212ec21a68SJordan K. Hubbard  *    derived from this software without specific prior written permission
222ec21a68SJordan K. Hubbard  *
232ec21a68SJordan K. Hubbard  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
242ec21a68SJordan K. Hubbard  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
252ec21a68SJordan K. Hubbard  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
262ec21a68SJordan K. Hubbard  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
272ec21a68SJordan K. Hubbard  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
282ec21a68SJordan K. Hubbard  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
292ec21a68SJordan K. Hubbard  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
302ec21a68SJordan K. Hubbard  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
312ec21a68SJordan K. Hubbard  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
322ec21a68SJordan K. Hubbard  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
332ec21a68SJordan K. Hubbard  */
342ec21a68SJordan K. Hubbard 
352ec21a68SJordan K. Hubbard #include <sys/cdefs.h>
362ec21a68SJordan K. Hubbard #ifndef lint
372ec21a68SJordan K. Hubbard __IDSTRING(elf64rcsid, "$NetBSD: exec_elf64.c,v 1.2 1997/08/02 21:30:19 perry Exp $");
382ec21a68SJordan K. Hubbard #endif
392ec21a68SJordan K. Hubbard #define	ELFSIZE		64
402ec21a68SJordan K. Hubbard 
412ec21a68SJordan K. Hubbard #include "exec_elf32.c"
42