This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Call overloading once for utf8 ovld→substr assignment
[perl5.git] / vos / vos.c
index a72614c..0b3c334 100644 (file)
--- a/vos/vos.c
+++ b/vos/vos.c
@@ -2,10 +2,21 @@
 /* Written 02-01-02 by Nick Ing-Simmons (nick@ing-simmons.net) */
 /* Modified 02-03-27 by Paul Green (Paul.Green@stratus.com) to
      add socketpair() dummy. */
+/* Modified 02-04-24 by Paul Green (Paul.Green@stratus.com) to
+     have pow(0,0) return 1, avoiding c-1471. */
+/* Modified 06-09-25 by Paul Green (Paul.Green@stratus.com) to
+     add syslog entries. */
+/* Modified 08-02-04 by Paul Green (Paul.Green@stratus.com) to
+     open the syslog file in the working dir. */
+/* Modified 11-10-17 by Paul Green to remove the dummy copies
+     of socketpair() and the syslog functions. */
 /* End of modification history */
 
 #include <errno.h>
 #include <fcntl.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
 #include <sys/types.h>
 #include <unistd.h>
 
@@ -24,14 +35,21 @@ truncate(const char *path, off_t len)
  return code;
 }
 
-/* VOS doesn't implement AF_UNIX (AF_LOCAL) style sockets, and
-   the perl emulation of them hangs on VOS (due to stcp-1257),
-   so we supply this version that always fails.  */
+/* Supply a private version of the power function that returns 1
+   for x**0.  This avoids c-1471.  Abigail's Japh tests depend
+   on this fix.  We leave all the other cases to the VOS C
+   runtime.  */
 
-int
-socketpair (int family, int type, int protocol, int fd[2]) {
- fd[0] = 0;
- fd[1] = 0;
- errno = ENOSYS;
- return -1;
+double s_crt_pow(double *x, double *y);
+
+double pow(x,y)
+double x, y;
+{
+     if (y == 0e0)                 /* c-1471 */
+     {
+          errno = EDOM;
+          return (1e0);
+     }
+
+     return(s_crt_pow(&x,&y));
 }