Add define for Kirk Smith's USR Courier driver. Change default baud
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_prod.c
CommitLineData
20fabf78 1/*
6cb9a2a2
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 * @(#)d_prod.c 5.1 %G%
20fabf78
DW
7 */
8
9double d_prod(x,y)
10float *x, *y;
11{
12return( (*x) * (*y) );
13}