This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
bump Typemap.pm version
[perl5.git] / util.h
diff --git a/util.h b/util.h
index 62cb05b..71531c7 100644 (file)
--- a/util.h
+++ b/util.h
@@ -241,6 +241,14 @@ 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
 #if defined(HAS_MKSTEMP) && defined(PERL_CORE)
 #   define Perl_my_mkstemp(templte) mkstemp(templte)
 #endif