diff options
author | Newton, Philip <Philip.Newton@datenrevision.de> | 2002-06-20 16:28:35 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-20 12:36:20 +0000 |
commit | 847f7ebcf568b0ee59ca9c441b74574cfefa07af (patch) | |
tree | 8b47f90b556a66c779a9fe15f49054784adb8a1a | |
parent | 47a51902bcfd3fcba4bfedb0eb21bb0a62744f58 (diff) | |
download | perl-847f7ebcf568b0ee59ca9c441b74574cfefa07af.tar.gz |
[Patch POSIX.pod] "fmod" ne "modf"
From: "Newton, Philip" <Philip.Newton@datenrevision.de>
Message-ID: <C9A98F2128EDD411B0920008C7B337A13DCDA7@hamsem01.de.gedas.vwg>
p4raw-id: //depot/perl@17323
-rw-r--r-- | ext/POSIX/POSIX.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/POSIX.pod b/ext/POSIX/POSIX.pod index 7b18fe5668..286df40ec1 100644 --- a/ext/POSIX/POSIX.pod +++ b/ext/POSIX/POSIX.pod @@ -385,7 +385,7 @@ integer value less than or equal to the numerical argument. This is identical to the C function C<fmod()>. - $r = modf($x, $y); + $r = fmod($x, $y); It returns the remainder C<$r = $x - $n*$y>, where C<$n = trunc($x/$y)>. The C<$r> has the same sign as C<$x> and magnitude (absolute value) |