From owner-cvs-all Wed Nov 14 18: 5:11 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABBEC37B405; Wed, 14 Nov 2001 18:05:05 -0800 (PST) Received: (from mike@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAF255825946; Wed, 14 Nov 2001 18:05:05 -0800 (PST) (envelope-from mike) Message-Id: <200111150205.fAF255825946@freefall.freebsd.org> From: Mike Barcroft Date: Wed, 14 Nov 2001 18:05:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include inttypes.h stdlib.h src/lib/libc/stdlib Makefile.inc abs.3 div.3 imaxabs.3 imaxabs.c imaxdiv.3 imaxdiv.c labs.3 ldiv.3 llabs.3 llabs.c lldiv.3 lldiv.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2001/11/14 18:05:05 PST Modified files: include inttypes.h stdlib.h lib/libc/stdlib Makefile.inc abs.3 div.3 labs.3 ldiv.3 Added files: lib/libc/stdlib imaxabs.3 imaxabs.c imaxdiv.3 imaxdiv.c llabs.3 llabs.c lldiv.3 lldiv.c Log: o Implement imaxabs(), imaxdiv(), llabs(), lldiv(). o Update abs(3), div(3), labs(3), ldiv(3) to reflect standards conformance and add additional references. Reviewed by: bde, wollman Revision Changes Path 1.2 +2 -2 src/include/inttypes.h 1.22 +14 -1 src/include/stdlib.h 1.33 +7 -5 src/lib/libc/stdlib/Makefile.inc 1.11 +5 -3 src/lib/libc/stdlib/abs.3 1.7 +6 -4 src/lib/libc/stdlib/div.3 1.1 +62 -0 src/lib/libc/stdlib/imaxabs.3 (new) 1.1 +36 -0 src/lib/libc/stdlib/imaxabs.c (new) 1.1 +71 -0 src/lib/libc/stdlib/imaxdiv.3 (new) 1.1 +45 -0 src/lib/libc/stdlib/imaxdiv.c (new) 1.8 +4 -2 src/lib/libc/stdlib/labs.3 1.8 +5 -3 src/lib/libc/stdlib/ldiv.3 1.1 +62 -0 src/lib/libc/stdlib/llabs.3 (new) 1.1 +36 -0 src/lib/libc/stdlib/llabs.c (new) 1.1 +71 -0 src/lib/libc/stdlib/lldiv.3 (new) 1.1 +45 -0 src/lib/libc/stdlib/lldiv.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message