aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/quad
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1995-12-26 13:25:13 +0000
committerBruce Evans <bde@FreeBSD.org>1995-12-26 13:25:13 +0000
commit432889653c77701ec853c44e189278e0920bd5a8 (patch)
tree841e8d2f38cd6de07ba51b21a6438e594a45a49e /lib/libc/quad
parent337e9f0bd2956d236879fd77f1a5c888d5ed860d (diff)
downloadsrc-432889653c77701ec853c44e189278e0920bd5a8.tar.gz
src-432889653c77701ec853c44e189278e0920bd5a8.zip
Added prototypes.
Notes
Notes: svn path=/head/; revision=13030
Diffstat (limited to 'lib/libc/quad')
-rw-r--r--lib/libc/quad/quad.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/libc/quad/quad.h b/lib/libc/quad/quad.h
index bc6a2f836327..873a1f6bde0a 100644
--- a/lib/libc/quad/quad.h
+++ b/lib/libc/quad/quad.h
@@ -35,6 +35,7 @@
* SUCH DAMAGE.
*
* @(#)quad.h 8.1 (Berkeley) 6/4/93
+ * $Id$
*/
/*
@@ -95,7 +96,11 @@ union uu {
#define LHALF(x) ((x) & ((1 << HALF_BITS) - 1))
#define LHUP(x) ((x) << HALF_BITS)
-extern u_quad_t __qdivrem __P((u_quad_t u, u_quad_t v, u_quad_t *rem));
+quad_t __divdi3 __P((quad_t a, quad_t b));
+quad_t __moddi3 __P((quad_t a, quad_t b));
+u_quad_t __qdivrem __P((u_quad_t u, u_quad_t v, u_quad_t *rem));
+u_quad_t __udivdi3 __P((u_quad_t a, u_quad_t b));
+u_quad_t __umoddi3 __P((u_quad_t a, u_quad_t b));
/*
* XXX