add -a flag
[unix-history] / usr / src / usr.bin / f77 / libF77 / r_lg10.c
CommitLineData
69bf8ade 1/*
e309c71b
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 *
68c6bd80 6 * @(#)r_lg10.c 5.3 %G%
69bf8ade
DW
7 */
8
46452188 9float r_lg10(x)
69bf8ade
DW
10float *x;
11{
68c6bd80 12double log10();
69bf8ade 13
68c6bd80 14return( log10(*x) );
69bf8ade 15}