/*- * Copyright (c) 1992 The Regents of the University of California. * All rights reserved. * * This software was developed by the Computer Systems Engineering group * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and * contributed to Berkeley. * * %sccs.include.redist.c% */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)udivdi3.c 5.3 (Berkeley) 06/02/92"; #endif /* LIBC_SCCS and not lint */ #include "quad.h" /* * Divide two unsigned quads. */ u_quad __udivdi3(u_quad a, u_quad b) { return (__qdivrem(a, b, (u_quad *)0)); }