xref: /dflybsd-src/contrib/openbsd_libm/src/w_gammaf_r.c (revision 4382f29d99a100bd77a81697c2f699c11f6a472a)
1*05a0b428SJohn Marino /* w_gammaf_r.c -- float version of w_gamma_r.c.
2*05a0b428SJohn Marino  * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3*05a0b428SJohn Marino  */
4*05a0b428SJohn Marino 
5*05a0b428SJohn Marino /*
6*05a0b428SJohn Marino  * ====================================================
7*05a0b428SJohn Marino  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8*05a0b428SJohn Marino  *
9*05a0b428SJohn Marino  * Developed at SunPro, a Sun Microsystems, Inc. business.
10*05a0b428SJohn Marino  * Permission to use, copy, modify, and distribute this
11*05a0b428SJohn Marino  * software is freely granted, provided that this notice
12*05a0b428SJohn Marino  * is preserved.
13*05a0b428SJohn Marino  * ====================================================
14*05a0b428SJohn Marino  */
15*05a0b428SJohn Marino 
16*05a0b428SJohn Marino /*
17*05a0b428SJohn Marino  * wrapper float gammaf_r(float x, int *signgamp)
18*05a0b428SJohn Marino  */
19*05a0b428SJohn Marino 
20*05a0b428SJohn Marino #include "math.h"
21*05a0b428SJohn Marino #include "math_private.h"
22*05a0b428SJohn Marino 
23*05a0b428SJohn Marino float
gammaf_r(float x,int * signgamp)24*05a0b428SJohn Marino gammaf_r(float x, int *signgamp) /* wrapper lgammaf_r */
25*05a0b428SJohn Marino {
26*05a0b428SJohn Marino 	return lgammaf_r(x,signgamp);
27*05a0b428SJohn Marino }
28