This time I test compiled. Honest.
Jarkko Hietaniemi [Wed, 12 Dec 2001 00:22:16 +0000 (00:22 +0000)]
p4raw-id: //depot/perl@13636

beos/beos.c

index a9f6f38..ca56203 100644 (file)
@@ -1,3 +1,5 @@
+#include "beosish.h"
+
 #undef waitpid
 
 #include <sys/wait.h>
@@ -9,8 +11,8 @@
  * of this, though.) */
 
 pid_t beos_waitpid(pid_t process_id, int *status_location, int options) {
-    pid_t got = waitpid(procedd_is, status_location, options);
+    pid_t got = waitpid(process_id, status_location, options);
     if (status_location)
-        *status_location <<= 8;
+      *status_location <<= 8; /* What about the POSIX low bits? */
     return got;
 }