summaryrefslogtreecommitdiff
path: root/ext/POSIX
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>2003-07-14 07:00:58 -0700
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-07-17 21:24:46 +0000
commit7a6ca5fd18d8809104f4d9b20c04b0a426e5fc08 (patch)
tree703ab13892fd66892bf8a25b89e63b9fa2bc0620 /ext/POSIX
parent48b971ca150628f9bfd4a49abb4675434cdd71df (diff)
downloadperl-7a6ca5fd18d8809104f4d9b20c04b0a426e5fc08.tar.gz
Re: POSIX::div
Message-ID: <20030714210057.GK18517@windhund.schwern.org> p4raw-id: //depot/perl@20165
Diffstat (limited to 'ext/POSIX')
-rw-r--r--ext/POSIX/POSIX.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/POSIX/POSIX.pm b/ext/POSIX/POSIX.pm
index 06e2252e81..1b33c3f544 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 {