wait.c 117 B

1234567
  1. #include <sys/wait.h>
  2. #include <syscall.h>
  3. pid_t wait(int* code)
  4. {
  5. return syscall1(SYS_wait, (uint32_t)code);
  6. }