mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
12 lines
205 B
C
12 lines
205 B
C
|
#include <unistd.h>
|
||
|
#include <string.h>
|
||
|
#include <errno.h>
|
||
|
#include <sys/wait.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
enum {
|
||
|
kPOSIXErrnoEINTR = EINTR,
|
||
|
kPOSIXErrnoECHILD = ECHILD,
|
||
|
kPOSIXWaitWUNTRACED = WUNTRACED,
|
||
|
};
|