FENIX_libc/stdlib/div.c
2020-12-18 12:39:37 -06:00

9 lines
146 B
C

#include <stdlib.h>
struct div_t div(int x, int y) {
struct div_t ret_val;
ret_val.quot = x / y;
ret_val.rem = x % y;
return ret_val;
}