utils.h: Wait()/WaitPid() add prototype

This commit is contained in:
Darryl L. Miles 2024-10-12 09:21:02 +01:00 committed by Tim Edwards
parent bd51438c15
commit 14a8409e40
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ extern gzFile flock_zopen();
extern float MagAtof();
extern int Wait();
extern int WaitPid();
extern int Wait(int *status);
extern int WaitPid(int pid, int *status);
#define FORK_f(pid) do { pid = fork(); if (pid > 0) ForkChildAdd (pid); } while (0)