diff options
author | Karl Williamson <khw@cpan.org> | 2019-08-30 14:09:48 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-09-02 21:52:11 -0600 |
commit | 7dfc378e24c21467deb8f13256031c2c6ff63efd (patch) | |
tree | df777a80ad3ff3db41427fe431cd2039b07ae91e /malloc.c | |
parent | ffd7c33adae91db87322fdbc5a4b1e3713f638d3 (diff) | |
download | perl-7dfc378e24c21467deb8f13256031c2c6ff63efd.tar.gz |
Note that [cm]alloc, realloc are documented
As they are really Unix calls
Diffstat (limited to 'malloc.c')
-rw-r--r-- | malloc.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1223,6 +1223,15 @@ S_adjust_size_and_find_bucket(size_t *nbytes_p) return bucket; } +/* +These have the same interfaces as the C lib ones, so are considered documented + +=for apidoc malloc +=for apidoc calloc +=for apidoc realloc +=cut +*/ + Malloc_t Perl_malloc(size_t nbytes) { |