mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -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,
|
|
};
|