Luna/libc/include/sys/wait.h
apio b6fb5f3dfe
All checks were successful
continuous-integration/drone/push Build is passing
kernel+libc: Implement waitpid()
2023-03-23 22:42:24 +01:00

22 lines
310 B
C

/* 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);
#ifdef __cplusplus
}
#endif
#endif