wait4() now extern "C" :-)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Karsten Ballüder 1998-10-30 11:24:38 +00:00
parent 96849c75a7
commit 1950b38c35
2 changed files with 10 additions and 2 deletions

View File

@ -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
//------------------------------------------------------------------------

View File

@ -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
//------------------------------------------------------------------------