1*47940Sbostic /*- 2*47940Sbostic * Copyright (c) 1980 The Regents of the University of California. 3*47940Sbostic * All rights reserved. 422891Skre * 5*47940Sbostic * %sccs.include.proprietary.c% 610483Sdlw */ 710483Sdlw 8*47940Sbostic #ifndef lint 9*47940Sbostic static char sccsid[] = "@(#)erfc_.c 5.2 (Berkeley) 04/12/91"; 10*47940Sbostic #endif /* not lint */ 11*47940Sbostic erfc_(x)1210483Sdlwfloat erfc_(x) 1310483Sdlw float *x; 1410483Sdlw { 1510483Sdlw double erfc(); 1610483Sdlw 1710483Sdlw return( erfc(*x) ); 1810483Sdlw } 19