diff options
Diffstat (limited to 'lib/libF77/h_mod.c')
-rw-r--r-- | lib/libF77/h_mod.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/libF77/h_mod.c b/lib/libF77/h_mod.c new file mode 100644 index 0000000..43431c1 --- /dev/null +++ b/lib/libF77/h_mod.c @@ -0,0 +1,10 @@ +#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); +} |