udivdi3.c (348238dbd42306d9fb5d89ab393b840572cfeb0f) | udivdi3.c (4a8dea8cf97aab33f4e6a11afcc64dd9562f3bfd) |
---|---|
1/*- 2 * Copyright (c) 1992, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This software was developed by the Computer Systems Engineering group 6 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and 7 * contributed to Berkeley. 8 * --- 26 unchanged lines hidden (view full) --- 35__FBSDID("$FreeBSD$"); 36 37#include <libkern/quad.h> 38 39/* 40 * Divide two unsigned quads. 41 */ 42u_quad_t | 1/*- 2 * Copyright (c) 1992, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This software was developed by the Computer Systems Engineering group 6 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and 7 * contributed to Berkeley. 8 * --- 26 unchanged lines hidden (view full) --- 35__FBSDID("$FreeBSD$"); 36 37#include <libkern/quad.h> 38 39/* 40 * Divide two unsigned quads. 41 */ 42u_quad_t |
43__udivdi3(a, b) 44 u_quad_t a, b; | 43__udivdi3(u_quad_t a, u_quad_t b) |
45{ 46 47 return (__qdivrem(a, b, (u_quad_t *)0)); 48} | 44{ 45 46 return (__qdivrem(a, b, (u_quad_t *)0)); 47} |