12 lines
173 B
C
12 lines
173 B
C
#ifndef lint
|
|
static char sccsid[] = "@(#)d_dim.c 1.1 92/07/30 SMI"; /* from UCB 1.1" */
|
|
#endif
|
|
/*
|
|
*/
|
|
|
|
double d_dim(a,b)
|
|
double *a, *b;
|
|
{
|
|
return( *a > *b ? *a - *b : 0);
|
|
}
|