blob: 2eab0ed9016b69cd356240703152beea4f19d4f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- command.c.orig Fri Sep 6 22:46:19 2002
+++ command.c Fri Sep 6 22:49:30 2002
@@ -383,7 +383,7 @@
XtPointer client_data;
XtPointer call_data;
{
-#ifdef SYSV
+#if defined(SYSV) || defined(__FreeBSD__)
int status;
#else
union wait status;
@@ -392,7 +392,7 @@
write_dbx("quit\n");
XtDestroyApplicationContext(app_context);
kill(dbxpid, SIGKILL);
-#ifdef SYSV
+#if defined(SYSV) || defined(__FreeBSD__)
#if 1 /* instead of ifdef SVR4 */
status = waitpid(dbxpid, (int *)0, WNOHANG); /* (MJH) */
#else
|