xref: /csrg-svn/usr.bin/f77/libF77/d_log.c (revision 22862)
110462Sdlw /*
2*22862Skre  * Copyright (c) 1980 Regents of the University of California.
3*22862Skre  * All rights reserved.  The Berkeley software License Agreement
4*22862Skre  * specifies the terms and conditions for redistribution.
5*22862Skre  *
6*22862Skre  *	@(#)d_log.c	5.1	06/07/85
710462Sdlw  */
810462Sdlw 
910462Sdlw double d_log(x)
1010462Sdlw double *x;
1110462Sdlw {
1210462Sdlw double log();
1310462Sdlw return( log(*x) );
1410462Sdlw }
15