add -f on mv for Version
[unix-history] / usr / src / usr.bin / f77 / libF77 / pow_dd.c
CommitLineData
b8dd5ec3 1/*
989888af
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 * @(#)pow_dd.c 5.1 %G%
b8dd5ec3
DW
7 */
8
9double pow_dd(ap, bp)
10double *ap, *bp;
11{
12double pow();
13
14return(pow(*ap, *bp) );
15}