erfc_ X
1: /* 2: * "@(#)erfc_.c 1.1" 3: */ 4: 5: float erfc_(x) 6: float *x; 7: { 8: double erfc(); 9: 10: return( erfc(*x) ); 11: }