diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-06 18:54:43 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-09-06 18:54:43 +0000 |
commit | 661cc6a69914a4799f8042e90d1df51291595d57 (patch) | |
tree | f2363595d7cef595e81f803aebbd95c016032d61 | |
parent | 767a6a262e9f71124cfc78e5c518e24b20e6fd99 (diff) | |
download | perl-661cc6a69914a4799f8042e90d1df51291595d57.tar.gz |
sprintf doc tweak (from Ian Phillipps <ian@dial.pipex.com>)
p4raw-id: //depot/perl@4089
-rw-r--r-- | pod/perlfunc.pod | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index f830478d23..0d47260e10 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -4104,6 +4104,7 @@ and the conversion letter: for integer l interpret integer as C type "long" or "unsigned long" h interpret integer as C type "short" or "unsigned short" + If no flags, interpret integer as C type "int" or "unsigned" There is also one Perl-specific flag: @@ -4121,7 +4122,7 @@ See L<perllocale>. If Perl understands "quads" (64-bit integers) (this requires either that the platform natively supports quads or that Perl -has been specifically compiled to support quads), the flags +has been specifically compiled to support quads), the characters d u o x X b i D U O |