1175309Sdas/*
2175309Sdas * Copyright (c) 1993,94 Winning Strategies, Inc.
3175309Sdas * All rights reserved.
4175309Sdas *
5175309Sdas * Redistribution and use in source and binary forms, with or without
6175309Sdas * modification, are permitted provided that the following conditions
7175309Sdas * are met:
8175309Sdas * 1. Redistributions of source code must retain the above copyright
9175309Sdas *    notice, this list of conditions and the following disclaimer.
10175309Sdas * 2. Redistributions in binary form must reproduce the above copyright
11175309Sdas *    notice, this list of conditions and the following disclaimer in the
12175309Sdas *    documentation and/or other materials provided with the distribution.
13175309Sdas * 3. All advertising materials mentioning features or use of this software
14175309Sdas *    must display the following acknowledgement:
15175309Sdas *      This product includes software developed by Winning Strategies, Inc.
16175309Sdas * 4. The name of the author may not be used to endorse or promote products
17175309Sdas *    derived from this software without specific prior written permission.
18175309Sdas *
19175309Sdas * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20175309Sdas * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21175309Sdas * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22175309Sdas * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23175309Sdas * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24175309Sdas * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25175309Sdas * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26175309Sdas * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27175309Sdas * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28175309Sdas * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29175309Sdas */
30175309Sdas
31175309Sdas/*
32175309Sdas * Written by:
33175309Sdas *	J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
34175309Sdas */
35175309Sdas
36175309Sdas#include <machine/asm.h>
37213337Sdim__FBSDID("$FreeBSD$")
38175309Sdas
39175309SdasENTRY(rintl)
40175309Sdas	fldt	4(%esp)
41175309Sdas	frndint
42175309Sdas	ret
43217108Skib
44217108Skib	.section .note.GNU-stack,"",%progbits
45