mirror of
https://github.com/neovim/neovim.git
synced 2026-03-07 08:41:49 +10: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,
|
|
};
|