cantera/ext/f2c_libs/h_mod.c
2012-02-03 23:41:00 +00:00

16 lines
207 B
C

#include "f2c.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef KR_headers
shortint h_mod(a,b) short *a, *b;
#else
shortint h_mod(short *a, short *b)
#endif
{
return( *a % *b);
}
#ifdef __cplusplus
}
#endif