OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [uClibc/] [libm/] [e_gamma_r.c] - Diff between revs 1325 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 1325 Rev 1765
 
 
/* @(#)e_gamma_r.c 5.1 93/09/24 */
/* @(#)e_gamma_r.c 5.1 93/09/24 */
/*
/*
 * ====================================================
 * ====================================================
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 *
 *
 * Developed at SunPro, a Sun Microsystems, Inc. business.
 * Developed at SunPro, a Sun Microsystems, Inc. business.
 * Permission to use, copy, modify, and distribute this
 * Permission to use, copy, modify, and distribute this
 * software is freely granted, provided that this notice
 * software is freely granted, provided that this notice
 * is preserved.
 * is preserved.
 * ====================================================
 * ====================================================
 *
 *
 */
 */
 
 
/* __ieee754_gamma_r(x, signgamp)
/* __ieee754_gamma_r(x, signgamp)
 * Reentrant version of the logarithm of the Gamma function
 * Reentrant version of the logarithm of the Gamma function
 * with user provide pointer for the sign of Gamma(x).
 * with user provide pointer for the sign of Gamma(x).
 *
 *
 * Method: See __ieee754_lgamma_r
 * Method: See __ieee754_lgamma_r
 */
 */
 
 
#include "math_private.h"
#include "math_private.h"
 
 
#ifdef __STDC__
#ifdef __STDC__
        //__private_extern__
        //__private_extern__
        double __ieee754_gamma_r(double x, int *signgamp)
        double __ieee754_gamma_r(double x, int *signgamp)
#else
#else
        double __ieee754_gamma_r(x,signgamp)
        double __ieee754_gamma_r(x,signgamp)
        double x; int *signgamp;
        double x; int *signgamp;
#endif
#endif
{
{
        return __ieee754_lgamma_r(x,signgamp);
        return __ieee754_lgamma_r(x,signgamp);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.