BSD 4_4 release
[unix-history] / usr / src / usr.bin / f77 / libF77 / besjn_.c
CommitLineData
82492b51
KB
1/*-
2 * Copyright (c) 1980 The Regents of the University of California.
3 * All rights reserved.
3b70fc7b 4 *
ad787160
C
5 * This module is believed to contain source code proprietary to AT&T.
6 * Use and redistribution is subject to the Berkeley Software License
7 * Agreement and your Software Agreement with AT&T (Western Electric).
4ffe7bdf
DW
8 */
9
82492b51 10#ifndef lint
ad787160 11static char sccsid[] = "@(#)besjn_.c 5.2 (Berkeley) 4/12/91";
82492b51
KB
12#endif /* not lint */
13
4ffe7bdf
DW
14double jn();
15
16float besjn_(n, x)
17long *n; float *x;
18{
19 return((float)jn((int)*n, (double)*x));
20}