xref: /titanic_52/usr/src/lib/libm/common/llib-lm (revision 25c28e83beb90e7c80452a7c818c5e6f73a07dc8)
1*25c28e83SPiotr Jasiukajtis/*
2*25c28e83SPiotr Jasiukajtis * CDDL HEADER START
3*25c28e83SPiotr Jasiukajtis *
4*25c28e83SPiotr Jasiukajtis * The contents of this file are subject to the terms of the
5*25c28e83SPiotr Jasiukajtis * Common Development and Distribution License (the "License").
6*25c28e83SPiotr Jasiukajtis * You may not use this file except in compliance with the License.
7*25c28e83SPiotr Jasiukajtis *
8*25c28e83SPiotr Jasiukajtis * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*25c28e83SPiotr Jasiukajtis * or http://www.opensolaris.org/os/licensing.
10*25c28e83SPiotr Jasiukajtis * See the License for the specific language governing permissions
11*25c28e83SPiotr Jasiukajtis * and limitations under the License.
12*25c28e83SPiotr Jasiukajtis *
13*25c28e83SPiotr Jasiukajtis * When distributing Covered Code, include this CDDL HEADER in each
14*25c28e83SPiotr Jasiukajtis * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*25c28e83SPiotr Jasiukajtis * If applicable, add the following below this CDDL HEADER, with the
16*25c28e83SPiotr Jasiukajtis * fields enclosed by brackets "[]" replaced with your own identifying
17*25c28e83SPiotr Jasiukajtis * information: Portions Copyright [yyyy] [name of copyright owner]
18*25c28e83SPiotr Jasiukajtis *
19*25c28e83SPiotr Jasiukajtis * CDDL HEADER END
20*25c28e83SPiotr Jasiukajtis */
21*25c28e83SPiotr Jasiukajtis/*
22*25c28e83SPiotr Jasiukajtis * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
23*25c28e83SPiotr Jasiukajtis */
24*25c28e83SPiotr Jasiukajtis/*
25*25c28e83SPiotr Jasiukajtis * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
26*25c28e83SPiotr Jasiukajtis * Use is subject to license terms.
27*25c28e83SPiotr Jasiukajtis */
28*25c28e83SPiotr Jasiukajtis
29*25c28e83SPiotr Jasiukajtis/* LINTLIBRARY */
30*25c28e83SPiotr Jasiukajtis/* PROTOLIB1 */
31*25c28e83SPiotr Jasiukajtis
32*25c28e83SPiotr Jasiukajtis#undef	__PRAGMA_REDEFINE_EXTNAME
33*25c28e83SPiotr Jasiukajtis#include <math.h>
34*25c28e83SPiotr Jasiukajtis#if defined(_STDC_C99)
35*25c28e83SPiotr Jasiukajtis#undef isnan
36*25c28e83SPiotr Jasiukajtisextern int isnan(double);
37*25c28e83SPiotr Jasiukajtisextern int isnand(double);	/* LSARC/2003/670 */
38*25c28e83SPiotr Jasiukajtistypedef union _h_val {
39*25c28e83SPiotr Jasiukajtis        unsigned long _i[2];
40*25c28e83SPiotr Jasiukajtis        double _d;
41*25c28e83SPiotr Jasiukajtis} _h_val;
42*25c28e83SPiotr Jasiukajtisextern const _h_val __huge_val;
43*25c28e83SPiotr Jasiukajtis#endif
44*25c28e83SPiotr Jasiukajtis#include <fenv.h>
45*25c28e83SPiotr Jasiukajtis#include <complex.h>
46*25c28e83SPiotr Jasiukajtis#undef	clog
47*25c28e83SPiotr Jasiukajtisextern double complex clog(double complex);
48