fcntl.h: move macros that do not vary between archs out of bits
[musl] / src / stdlib / div.c
1 #include <stdlib.h>
2
3 div_t div(int num, int den)
4 {
5         return (div_t){ num/den, num%den };
6 }