Change 20165 by [EMAIL PROTECTED] on 2003/07/17 21:24:46 Subject: [PATCH] Re: POSIX::div From: Michael G Schwern <[EMAIL PROTECTED]> Date: Mon, 14 Jul 2003 14:00:58 -0700 Message-ID: <[EMAIL PROTECTED]>
Affected files ... ... //depot/perl/ext/POSIX/POSIX.pm#33 edit Differences ... ==== //depot/perl/ext/POSIX/POSIX.pm#33 (text) ==== Index: perl/ext/POSIX/POSIX.pm --- perl/ext/POSIX/POSIX.pm#32~20081~ Tue Jul 8 22:53:56 2003 +++ perl/ext/POSIX/POSIX.pm Thu Jul 17 14:24:46 2003 @@ -425,7 +425,7 @@ } sub div { - unimpl "div() is C-specific, stopped"; + unimpl "div() is C-specific, use /, % and int instead"; } sub exit { @@ -447,7 +447,7 @@ } sub ldiv { - unimpl "ldiv() is C-specific, use / and int instead"; + unimpl "ldiv() is C-specific, use /, % and int instead"; } sub malloc { End of Patch.