diff options
Diffstat (limited to 'src/stdlib/lldiv.c')
-rw-r--r-- | src/stdlib/lldiv.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/stdlib/lldiv.c b/src/stdlib/lldiv.c new file mode 100644 index 00000000..f4835ec2 --- /dev/null +++ b/src/stdlib/lldiv.c @@ -0,0 +1,13 @@ +#include <stdlib.h> + +lldiv_t lldiv(long long int numer, long long int denom) +{ + lldiv_t d; + d.quot = numer / denom; + d.rem = numer % denom; + return d; +} + +/* +STDC(199901) +*/ |