xref: /freebsd/sys/kern/imgact_elf32.c (revision 8a36da99deb0e19363ec04e4d3facd869c1028f5)
13ebc1248SPeter Wemm /*-
2*8a36da99SPedro F. Giffuni  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3*8a36da99SPedro F. Giffuni  *
43ebc1248SPeter Wemm  * Copyright (c) 2002 Doug Rabson
53ebc1248SPeter Wemm  * All rights reserved.
63ebc1248SPeter Wemm  *
73ebc1248SPeter Wemm  * Redistribution and use in source and binary forms, with or without
83ebc1248SPeter Wemm  * modification, are permitted provided that the following conditions
93ebc1248SPeter Wemm  * are met:
103ebc1248SPeter Wemm  * 1. Redistributions of source code must retain the above copyright
113ebc1248SPeter Wemm  *    notice, this list of conditions and the following disclaimer.
123ebc1248SPeter Wemm  * 2. Redistributions in binary form must reproduce the above copyright
133ebc1248SPeter Wemm  *    notice, this list of conditions and the following disclaimer in the
143ebc1248SPeter Wemm  *    documentation and/or other materials provided with the distribution.
153ebc1248SPeter Wemm  *
163ebc1248SPeter Wemm  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
173ebc1248SPeter Wemm  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
183ebc1248SPeter Wemm  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
193ebc1248SPeter Wemm  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
203ebc1248SPeter Wemm  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
213ebc1248SPeter Wemm  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
223ebc1248SPeter Wemm  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
233ebc1248SPeter Wemm  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
243ebc1248SPeter Wemm  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
253ebc1248SPeter Wemm  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
263ebc1248SPeter Wemm  * SUCH DAMAGE.
273ebc1248SPeter Wemm  */
283ebc1248SPeter Wemm 
29677b542eSDavid E. O'Brien #include <sys/cdefs.h>
30677b542eSDavid E. O'Brien __FBSDID("$FreeBSD$");
31677b542eSDavid E. O'Brien 
323ebc1248SPeter Wemm #define __ELF_WORD_SIZE 32
333ebc1248SPeter Wemm #include <kern/imgact_elf.c>
34