mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-18 01:49:08 +08:00
11 lines
165 B
C
11 lines
165 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#ifdef KR_headers
|
||
|
double d_dim(a,b) doublereal *a, *b;
|
||
|
#else
|
||
|
double d_dim(doublereal *a, doublereal *b)
|
||
|
#endif
|
||
|
{
|
||
|
return( *a > *b ? *a - *b : 0);
|
||
|
}
|