summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-05-02 15:46:39 -0600
committerKarl Williamson <khw@cpan.org>2022-05-09 06:42:29 -0600
commita241bba747d907214f0448402d3c07ca4f061637 (patch)
treeeda260f6ad1e0fe810a6e7ccbafa3c1ed8392bec /util.c
parent09fcffd19063295e64a9f7651939dcc9fdeb3d5e (diff)
downloadperl-a241bba747d907214f0448402d3c07ca4f061637.tar.gz
perlapi: Document mkstemp, mkostemp
Diffstat (limited to 'util.c')
-rw-r--r--util.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/util.c b/util.c
index 10ef3d19d7..49538d7b9d 100644
--- a/util.c
+++ b/util.c
@@ -6074,6 +6074,15 @@ S_my_mkostemp(char *templte, int flags) {
#endif
#ifndef HAS_MKOSTEMP
+
+/*
+=for apidoc my_mkostemp
+
+The C library C<L<mkostemp(3)>> if available, or a Perl implementation of it.
+
+=cut
+*/
+
int
Perl_my_mkostemp(char *templte, int flags)
{
@@ -6083,6 +6092,15 @@ Perl_my_mkostemp(char *templte, int flags)
#endif
#ifndef HAS_MKSTEMP
+
+/*
+=for apidoc my_mkstemp
+
+The C library C<L<mkstemp(3)>> if available, or a Perl implementation of it.
+
+=cut
+*/
+
int
Perl_my_mkstemp(char *templte)
{