FENIX_libc/stdlib/ldiv.c

9 lines
159 B
C
Raw Normal View History

2020-12-01 23:40:03 +00:00
#include <stdlib.h>
2020-12-18 18:39:37 +00:00
struct ldiv_t ldiv(long int x, long int y) {
struct ldiv_t ret_val;
2020-12-01 23:40:03 +00:00
ret_val.quot = x / y;
ret_val.rem = x % y;
return ret_val;
}