mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-10 10:09:45 +08:00
8 lines
97 B
C
8 lines
97 B
C
#include "f2c.h"
|
|
|
|
integer
|
|
i_dim (integer * a, integer * b)
|
|
{
|
|
return (*a > *b ? *a - *b : 0);
|
|
}
|