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