mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 23:57:54 +01: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);
|
||
|
}
|