summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorLukas Mai <l.mai@web.de>2016-06-11 12:06:41 +0200
committerLukas Mai <l.mai@web.de>2016-06-11 12:06:41 +0200
commit596f7718608c57f0ddf6f274e2c8d12030fb4e9f (patch)
treeaa5241407bd575f2db098782b368ddff4a191596 /handy.h
parent88bd7502bf4d3b88554da76bf1126e98dbacd997 (diff)
downloadperl-596f7718608c57f0ddf6f274e2c8d12030fb4e9f.tar.gz
handy.h: remove deprecated L<"section"> syntax
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/handy.h b/handy.h
index 932a874c26..b1b50ff637 100644
--- a/handy.h
+++ b/handy.h
@@ -1860,7 +1860,7 @@ typedef U32 line_t;
=for apidoc Am|void|Newx|void* ptr|int nitems|type
The XSUB-writer's interface to the C C<malloc> function.
-Memory obtained by this should B<ONLY> be freed with L<"Safefree">.
+Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
In 5.9.3, Newx() and friends replace the older New() API, and drops
the first parameter, I<x>, a debug aid which allowed callers to identify
@@ -1872,29 +1872,29 @@ there for use in XS modules supporting older perls.
The XSUB-writer's interface to the C C<malloc> function, with
cast. See also C<L</Newx>>.
-Memory obtained by this should B<ONLY> be freed with L<"Safefree">.
+Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
=for apidoc Am|void|Newxz|void* ptr|int nitems|type
The XSUB-writer's interface to the C C<malloc> function. The allocated
memory is zeroed with C<memzero>. See also C<L</Newx>>.
-Memory obtained by this should B<ONLY> be freed with L<"Safefree">.
+Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
=for apidoc Am|void|Renew|void* ptr|int nitems|type
The XSUB-writer's interface to the C C<realloc> function.
-Memory obtained by this should B<ONLY> be freed with L<"Safefree">.
+Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
=for apidoc Am|void|Renewc|void* ptr|int nitems|type|cast
The XSUB-writer's interface to the C C<realloc> function, with
cast.
-Memory obtained by this should B<ONLY> be freed with L<"Safefree">.
+Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
=for apidoc Am|void|Safefree|void* ptr
The XSUB-writer's interface to the C C<free> function.
-This should B<ONLY> be used on memory obtained using L<"Newx"> and friends.
+This should B<ONLY> be used on memory obtained using L</"Newx"> and friends.
=for apidoc Am|void|Move|void* src|void* dest|int nitems|type
The XSUB-writer's interface to the C C<memmove> function. The C<src> is the