diff options
author | Tom Hukins <tom@eborcom.com> | 2009-04-14 16:21:24 +0100 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2009-04-14 19:19:26 +0200 |
commit | 5a7d1118849a8fdecfec79047afe1bc71a4a512a (patch) | |
tree | adc15148f39083cf75ee215e5079a9a33a1b79a3 /pod/perlxstut.pod | |
parent | 512e1353c90135f2f86b8e9e0540d4f90ecc6215 (diff) | |
download | perl-5a7d1118849a8fdecfec79047afe1bc71a4a512a.tar.gz |
Documentation Patch: perlxs.pod
Porters,
Please find attached a small patch to the perlxstut.pod document.
The first part of the patch makes a link more precise. The
second, more useful, part of the patch fixes some confused English
that doesn't make sense.
Thanks for your efforts,
Tom
Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
Diffstat (limited to 'pod/perlxstut.pod')
-rw-r--r-- | pod/perlxstut.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlxstut.pod b/pod/perlxstut.pod index 7db3eb3537..090b14a9e7 100644 --- a/pod/perlxstut.pod +++ b/pod/perlxstut.pod @@ -196,7 +196,7 @@ been deleted): % You can safely ignore the line about "prototyping behavior" - it is -explained in the section "The PROTOTYPES: Keyword" in L<perlxs>. +explained in L<perlxs/"The PROTOTYPES: Keyword">. If you are on a Win32 system, and the build process fails with linker errors for functions in the C library, check if your Perl is configured @@ -428,7 +428,7 @@ line starts with optional whitespace, and may have an optional terminating semicolon. The list of output parameters occurs at the very end of the function, just -before after the OUTPUT: directive. The use of RETVAL tells Perl that you +after the OUTPUT: directive. The use of RETVAL tells Perl that you wish to send this value back as the return value of the XSUB function. In Example 3, we wanted the "return value" placed in the original variable which we passed in, so we listed it (and not RETVAL) in the OUTPUT: section. |