From: Michael G. Schwern Date: Mon, 14 Jul 2003 14:00:58 +0000 (-0700) Subject: Re: POSIX::div X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7a6ca5fd18d8809104f4d9b20c04b0a426e5fc08;p=p5sagit%2Fp5-mst-13.2.git Re: POSIX::div Message-ID: <20030714210057.GK18517@windhund.schwern.org> p4raw-id: //depot/perl@20165 --- diff --git a/ext/POSIX/POSIX.pm b/ext/POSIX/POSIX.pm index 06e2252..1b33c3f 100644 --- a/ext/POSIX/POSIX.pm +++ b/ext/POSIX/POSIX.pm @@ -425,7 +425,7 @@ sub calloc { } sub div { - unimpl "div() is C-specific, stopped"; + unimpl "div() is C-specific, use /, % and int instead"; } sub exit { @@ -447,7 +447,7 @@ sub labs { } sub ldiv { - unimpl "ldiv() is C-specific, use / and int instead"; + unimpl "ldiv() is C-specific, use /, % and int instead"; } sub malloc {