110477Sdlw /* 2*22885Skre * Copyright (c) 1980 Regents of the University of California. 3*22885Skre * All rights reserved. The Berkeley software License Agreement 4*22885Skre * specifies the terms and conditions for redistribution. 5*22885Skre * 6*22885Skre * @(#)dbesyn_.c 5.1 06/07/85 710477Sdlw */ 810477Sdlw 910477Sdlw double yn(); 1010477Sdlw 1110477Sdlw double dbesyn_(n, x) 1210477Sdlw long *n; double *x; 1310477Sdlw { 1410477Sdlw return(yn((int)*n, *x)); 1510477Sdlw } 16