blob: 43431c1c503c517e809f7b6b3b5b3cbdc22ae480 [file] [log] [blame]
#include "f2c.h"
#ifdef KR_headers
shortint h_mod(a,b) short *a, *b;
#else
shortint h_mod(short *a, short *b)
#endif
{
return( *a % *b);
}