diff options
author | Zefram <zefram@fysh.org> | 2017-12-19 18:50:32 +0000 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2017-12-22 16:26:38 +0000 |
commit | d333cbeb476c54aaf8f85ffdcfc187f23b4ea2ee (patch) | |
tree | f4ccafab5d5661caa83ff8da54e4d67b02f96aaa /util.h | |
parent | 2517ba9951b6aed3ab780dc0247c90deff825b4e (diff) | |
download | perl-d333cbeb476c54aaf8f85ffdcfc187f23b4ea2ee.tar.gz |
use Perl_my_mkstemp() where appropriate
Since commit e48855bdd2fc57fc51156f5e4b8dee6b544456c8 there has been
no need to be conditional about using mkstemp(). Perl_my_mkstemp()
is always available, one way or another.
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -241,6 +241,11 @@ means arg not present, 1 is empty string/null byte */ (little), (lend) - (little))) #endif +#ifdef __Lynx__ +/* Missing proto on LynxOS */ +int mkstemp(char*); +#endif + #if defined(HAS_MKOSTEMP) && defined(PERL_CORE) # define Perl_my_mkostemp(templte, flags) mkostemp(templte, flags) #endif |