Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/src/ape/lib/ap/gen/ldiv.c
#include <stdlib.h> ldiv_t ldiv(long int numer, long int denom) { ldiv_t ans; ans.quot=numer/denom; ans.rem=numer-ans.quot*denom; return ans; }