neovim/test/unit/fixtures/posix.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
205 B
C
Raw Normal View History

#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <sys/wait.h>
#include <stdlib.h>
enum {
kPOSIXErrnoEINTR = EINTR,
kPOSIXErrnoECHILD = ECHILD,
kPOSIXWaitWUNTRACED = WUNTRACED,
};