BSD 4_4 release
[unix-history] / usr / src / usr.bin / f77 / libF77 / r_lg10.c
CommitLineData
82492b51
KB
1/*-
2 * Copyright (c) 1980 The Regents of the University of California.
3 * All rights reserved.
e309c71b 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).
69bf8ade
DW
8 */
9
82492b51 10#ifndef lint
ad787160 11static char sccsid[] = "@(#)r_lg10.c 5.4 (Berkeley) 4/12/91";
82492b51
KB
12#endif /* not lint */
13
46452188 14float r_lg10(x)
69bf8ade
DW
15float *x;
16{
68c6bd80 17double log10();
69bf8ade 18
68c6bd80 19return( log10(*x) );
69bf8ade 20}