blob: 7716bd21e9403fcddca76ee270b35e29ae042091 [file] [log] [blame]
Rachel Dowdall2d15dee2014-03-22 20:29:56 +00001// Functions for integer modulo and floor division
2
3machine_int_t python_modulo(machine_int_t dividend, machine_int_t divisor);
4machine_int_t python_floor_divide(machine_int_t num, machine_int_t denom);