File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,12 +53,12 @@ XSUB's aliases was used to invoke it. See L<perlxs/"The ALIAS: Keyword">.
53
53
=for apidoc Am|SV*|ST|int ix
54
54
Used to access elements on the XSUB's stack.
55
55
56
- =for apidoc Ay ||XS|name
56
+ =for apidoc Am ||XS|name
57
57
Macro to declare an XSUB and its C parameter list. This is handled by
58
58
C<xsubpp>. It is the same as using the more explicit C<XS_EXTERNAL> macro; the
59
59
latter is preferred.
60
60
61
- =for apidoc Ayu ||XS_INTERNAL|name
61
+ =for apidoc Amu ||XS_INTERNAL|name
62
62
Macro to declare an XSUB and its C parameter list without exporting the symbols.
63
63
This is handled by C<xsubpp> and generally preferable over exporting the XSUB
64
64
symbols unnecessarily.
@@ -67,10 +67,10 @@ symbols unnecessarily.
67
67
XS_INTERNAL marked 'u' because declaring a function static within our test
68
68
function doesn't work
69
69
70
- =for apidoc Ay ||XS_EXTERNAL|name
70
+ =for apidoc Am ||XS_EXTERNAL|name
71
71
Macro to declare an XSUB and its C parameter list explicitly exporting the symbols.
72
72
73
- =for apidoc Ay ||XSPROTO|name
73
+ =for apidoc Am ||XSPROTO|name
74
74
Macro used by C<L</XS_INTERNAL>> and C<L</XS_EXTERNAL>> to declare a function
75
75
prototype. You probably shouldn't be using this directly yourself.
76
76
You can’t perform that action at this time.
0 commit comments