HardenedBSD/contrib/libf2c/libF77/h_dim.c

8 lines
100 B
C
Raw Normal View History

1999-09-18 12:51:31 +02:00
#include "f2c.h"
2003-07-11 05:42:19 +02:00
shortint
h_dim (shortint * a, shortint * b)
1999-09-18 12:51:31 +02:00
{
2003-07-11 05:42:19 +02:00
return (*a > *b ? *a - *b : 0);
1999-09-18 12:51:31 +02:00
}