From: Arthur Bergman Date: Wed, 25 Jul 2001 11:28:23 +0000 (+0200) Subject: Doc fix for perlguts / threading X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a9402793c9574e1dbb271feb8fa8772bc9a9e63a;p=p5sagit%2Fp5-mst-13.2.git Doc fix for perlguts / threading Message-Id: p4raw-id: //depot/perl@11471 --- diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 323d456..6478efd 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -966,8 +966,8 @@ C function any time a scalar's value is used or changed. The C's C field points to a C structure: struct ufuncs { - I32 (*uf_val)(IV, SV*); - I32 (*uf_set)(IV, SV*); + I32 (*uf_val)(pTHX_ IV, SV*); + I32 (*uf_set)(pTHX_ IV, SV*); IV uf_index; };