From 1950b38c35e4bed8cd2660d2178036b1b9e1b9bf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karsten=20Ball=C3=BCder?= Date: Fri, 30 Oct 1998 11:24:38 +0000 Subject: [PATCH] wait4() now extern "C" :-) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/utilsgtk.cpp | 6 +++++- src/gtk1/utilsgtk.cpp | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/gtk/utilsgtk.cpp b/src/gtk/utilsgtk.cpp index 07ca4f5658..2befc47dc3 100644 --- a/src/gtk/utilsgtk.cpp +++ b/src/gtk/utilsgtk.cpp @@ -37,7 +37,11 @@ #ifdef __SOLARIS__ // somehow missing from sys/wait.h but in the system's docs -pid_t wait4(pid_t pid, int *statusp, int options, struct rusage *rusage); +extern "C" +{ + pid_t wait4(pid_t pid, int *statusp, int options, struct rusage + *rusage); +} #endif //------------------------------------------------------------------------ diff --git a/src/gtk1/utilsgtk.cpp b/src/gtk1/utilsgtk.cpp index 07ca4f5658..2befc47dc3 100644 --- a/src/gtk1/utilsgtk.cpp +++ b/src/gtk1/utilsgtk.cpp @@ -37,7 +37,11 @@ #ifdef __SOLARIS__ // somehow missing from sys/wait.h but in the system's docs -pid_t wait4(pid_t pid, int *statusp, int options, struct rusage *rusage); +extern "C" +{ + pid_t wait4(pid_t pid, int *statusp, int options, struct rusage + *rusage); +} #endif //------------------------------------------------------------------------ -- 2.45.2