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

This commit is contained in:
Darryl L. Miles
2024-12-26 15:20:58 -05:00
committed by Tim Edwards
parent bd51438c15
commit 14a8409e40
+2 -2
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)