xref: /freebsd/sys/powerpc/include/floatingpoint.h (revision 95ee2897e98f5d444f26ed2334cc7c439f9c16c6)
160727d8bSWarner Losh /*-
2*51369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
3*51369649SPedro F. Giffuni  *
4a3063d48SPeter Grehan  * Copyright (c) 2004 Suleiman Souhlal <refugee@segfaulted.com>
5a3063d48SPeter Grehan  * All rights reserved.
6a3063d48SPeter Grehan  *
7a3063d48SPeter Grehan  * Redistribution and use in source and binary forms, with or without
8a3063d48SPeter Grehan  * modification, are permitted provided that the following conditions
9a3063d48SPeter Grehan  * are met:
10a3063d48SPeter Grehan  * 1. Redistributions of source code must retain the above copyright
11a3063d48SPeter Grehan  *    notice, this list of conditions and the following disclaimer.
12a3063d48SPeter Grehan  * 2. Redistributions in binary form must reproduce the above copyright
13a3063d48SPeter Grehan  *    notice, this list of conditions and the following disclaimer in the
14a3063d48SPeter Grehan  *    documentation and/or other materials provided with the distribution.
15a3063d48SPeter Grehan  * 3. Neither the name of the author nor the names of any co-contributors
16a3063d48SPeter Grehan  *    may be used to endorse or promote products derived from this software
17a3063d48SPeter Grehan  *    without specific prior written permission.
18a3063d48SPeter Grehan  *
19a3063d48SPeter Grehan  * THIS SOFTWARE IS PROVIDED BY DAVID O'BRIEN AND CONTRIBUTORS ``AS IS'' AND
20a3063d48SPeter Grehan  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21a3063d48SPeter Grehan  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22a3063d48SPeter Grehan  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23a3063d48SPeter Grehan  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24a3063d48SPeter Grehan  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25a3063d48SPeter Grehan  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26a3063d48SPeter Grehan  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27a3063d48SPeter Grehan  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28a3063d48SPeter Grehan  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29a3063d48SPeter Grehan  * SUCH DAMAGE.
30a3063d48SPeter Grehan  */
31a3063d48SPeter Grehan 
32a3063d48SPeter Grehan #ifndef _FLOATINGPOINT_H_
33a3063d48SPeter Grehan #define _FLOATINGPOINT_H_
34a3063d48SPeter Grehan 
35a3063d48SPeter Grehan #include <machine/ieeefp.h>
36a3063d48SPeter Grehan 
37a3063d48SPeter Grehan #endif /* !_FLOATINGPOINT_H_ */
38