From 97d5c458cfa039d857301e1ca7d5af3beb37131d Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sun, 26 Apr 2026 16:38:00 -0400 Subject: build: Better Build System --- static/unix-v10/man3/ldiv.3 | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 static/unix-v10/man3/ldiv.3 (limited to 'static/unix-v10/man3/ldiv.3') diff --git a/static/unix-v10/man3/ldiv.3 b/static/unix-v10/man3/ldiv.3 new file mode 100644 index 00000000..ad949620 --- /dev/null +++ b/static/unix-v10/man3/ldiv.3 @@ -0,0 +1,43 @@ +.th LDIV III 5/7/73 +.sh NAME +ldiv \*- long division +.sh SYNOPSIS +.ft B +ldiv(hidividend, lodividend, divisor) +.s3 +lrem(hidividend, lodividend, divisor) +.ft R +.sh DESCRIPTION +The +concatenation of the signed +16-bit +.it hidividend +and the unsigned 16-bit +.it lodividend +is divided by +\fIdivisor\fR. +The 16-bit signed quotient is returned by +.it ldiv +and the 16-bit signed remainder is returned by +.it lrem. +Divide check and erroneous results +will occur +unless the magnitude of the +divisor is greater than that of the high-order +dividend. +.s3 +An integer division of an unsigned +dividend by a signed divisor may +be accomplished by +.s3 + quo = ldiv(0, dividend, divisor); +.s3 +and similarly for the remainder operation. +.s3 +Often both the quotient and the remainder are wanted. +Therefore +.it ldiv +leaves a remainder in the external cell +.it ldivr. +.sh BUGS +No divide check check. -- cgit v1.2.3