neovim/test/unit/fixtures/posix.h

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,
};