10 lines
99 B
C
10 lines
99 B
C
#include "f2c.h"
|
|
|
|
extern integer s_cmp();
|
|
|
|
shortint h_mod(a,b)
|
|
short *a, *b;
|
|
{
|
|
return( *a % *b);
|
|
}
|