HardenedBSD/contrib/libf2c/libF77/h_mod.c

8 lines
78 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_mod (short *a, short *b)
1999-09-18 12:51:31 +02:00
{
2003-07-11 05:42:19 +02:00
return (*a % *b);
1999-09-18 12:51:31 +02:00
}