Luna/libc/include/sys/wait.h
apio eb3fb04734
All checks were successful
continuous-integration/drone/push Build is passing
libc: Add system()
2023-04-08 12:18:52 +02:00

28 lines
460 B
C

/* sys/wait.h: Functions for waiting. */
#ifndef _SYS_WAIT_H
#define _SYS_WAIT_H
#include <bits/waitpid.h>
#include <sys/types.h>
#define WIFEXITED(ret) ((ret) | 0)
#define WEXITSTATUS(ret) ((ret)&0xff)
#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);
#ifdef __cplusplus
}
#endif
#endif