aboutsummaryrefslogtreecommitdiff
path: root/test/unit/fixtures/posix.h
blob: 0d16f8aac95f1203e14b9903bda955ac401c5005 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include <unistd.h>

enum {
  kPOSIXErrnoEINTR = EINTR,
  kPOSIXErrnoECHILD = ECHILD,
  kPOSIXWaitWUNTRACED = WUNTRACED,
};