Luna/libc/include/sys/wait.h

25 lines
386 B
C
Raw Normal View History

2023-03-23 21:42:24 +00:00
/* sys/wait.h: Functions for waiting. */
#ifndef _SYS_WAIT_H
#define _SYS_WAIT_H
#include <bits/waitpid.h>
#include <sys/types.h>
#ifdef __cplusplus
extern "C"
{
#endif
/* Wait for a child process to exit. */
pid_t waitpid(pid_t pid, int* status, int options);
/* Wait for any child process to exit. */
pid_t wait(int* status);
2023-03-23 21:42:24 +00:00
#ifdef __cplusplus
}
#endif
#endif