Newer
Older
Scratch / lockwasher / src / lib / libc / quad / udivdi3.c
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 130 bytes Scratch
#include <quad.h>

u_quad_t __udivdi3(u_quad_t a,u_quad_t b) {

        //return (__qdivrem(a, b, (u_quad_t *)0));
  return(0);
}