diff options
author | Karl Williamson <khw@cpan.org> | 2020-07-22 17:04:34 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-08-15 06:13:58 -0600 |
commit | eca111b3d8ea1c49e523fe5d789a2fe4d7e6c2a1 (patch) | |
tree | cc23638cb1de165e83c42f9f0aecb7a13c0fede1 /op.h | |
parent | c3c93274a2a9c15b10384d1b47126e61161a6056 (diff) | |
download | perl-eca111b3d8ea1c49e523fe5d789a2fe4d7e6c2a1.tar.gz |
Note GIMME is deprecated
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -77,7 +77,7 @@ The XSUB-writer's equivalent to Perl's C<wantarray>. Returns C<G_VOID>, C<G_SCALAR> or C<G_ARRAY> for void, scalar or list context, respectively. See L<perlcall> for a usage example. -=for apidoc Amn|U32|GIMME +=for apidoc AmnD|U32|GIMME A backward-compatible version of C<GIMME_V> which can only return C<G_SCALAR> or C<G_ARRAY>; in a void context, it returns C<G_SCALAR>. Deprecated. Use C<GIMME_V> instead. |