1174698Sdas/*
2174698Sdas * Copyright (c) 1993,94 Winning Strategies, Inc.
3174698Sdas * All rights reserved.
4174698Sdas *
5174698Sdas * Redistribution and use in source and binary forms, with or without
6174698Sdas * modification, are permitted provided that the following conditions
7174698Sdas * are met:
8174698Sdas * 1. Redistributions of source code must retain the above copyright
9174698Sdas *    notice, this list of conditions and the following disclaimer.
10174698Sdas * 2. Redistributions in binary form must reproduce the above copyright
11174698Sdas *    notice, this list of conditions and the following disclaimer in the
12174698Sdas *    documentation and/or other materials provided with the distribution.
13174698Sdas * 3. All advertising materials mentioning features or use of this software
14174698Sdas *    must display the following acknowledgement:
15174698Sdas *      This product includes software developed by Winning Strategies, Inc.
16174698Sdas * 4. The name of the author may not be used to endorse or promote products
17174698Sdas *    derived from this software without specific prior written permission
18174698Sdas *
19174698Sdas * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20174698Sdas * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21174698Sdas * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22174698Sdas * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23174698Sdas * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24174698Sdas * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25174698Sdas * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26174698Sdas * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27174698Sdas * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28174698Sdas * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29174698Sdas */
30174698Sdas
31174698Sdas/*
32174698Sdas * Written by:
33174698Sdas *	J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
34174698Sdas */
35174698Sdas
36174698Sdas#include <machine/asm.h>
37213337Sdim__FBSDID("$FreeBSD$")
38174698Sdas
39174698SdasENTRY(logbl)
40174698Sdas	fldt	4(%esp)
41174698Sdas	fxtract
42174698Sdas	fstp	%st
43174698Sdas	ret
44217108Skib
45217108Skib	.section .note.GNU-stack,"",%progbits
46