1 /* 2 * ==================================================== 3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. 4 * 5 * Developed at SunSoft, a Sun Microsystems, Inc. business. 6 * Permission to use, copy, modify, and distribute this 7 * software is freely granted, provided that this notice 8 * is preserved. 9 * ==================================================== 10 */ 11 12 #include <sys/cdefs.h> 13 #include "math.h" 14 #include "math_private.h" 15 16 extern int signgam; 17 18 long double 19 lgammal(long double x) 20 { 21 return lgammal_r(x,&signgam); 22 } 23