don't use 'cc -f' with compilers that don't do automatic double to
[unix-history] / usr / src / usr.bin / f77 / libF77 / besj1_.c
CommitLineData
001a18a1 1/*
c20e8c4d
RE
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
6 * @(#)besj1_.c 5.1 %G%
001a18a1
DW
7 */
8
9double j1();
10
11float besj1_(x)
12float *x;
13{
14 return((float)j1((double)*x));
15}