1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/net-im/icb/files/patch-o-ad
1998-05-25 23:23:36 +00:00

37 lines
803 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

*** tcl/tclCmdAH.c.orig Sat Feb 25 03:19:53 1995
--- tcl/tclCmdAH.c Wed May 6 18:54:07 1998
***************
*** 38,45 ****
--- 38,51 ----
#include <sys/wait.h>
#include "tclInt.h"
+ #if (defined(__unix__) || defined(unix)) && !defined(USG)
+ #include <sys/param.h>
+ #endif
+
extern int errno;
+ #if !(defined(BSD) && BSD >= 199306)
extern long lseek();
+ #endif
extern char *mktemp();
/*
***************
*** 627,633 ****
while (1) {
int child;
! child = wait(&status);
if (child == -1) {
sprintf(interp->result,
"child process disappeared mysteriously");
--- 633,639 ----
while (1) {
int child;
! child = wait((int *)&status);
if (child == -1) {
sprintf(interp->result,
"child process disappeared mysteriously");