neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

posix.h (205B)


      1 #include <errno.h>
      2 #include <stdlib.h>
      3 #include <string.h>
      4 #include <sys/wait.h>
      5 #include <unistd.h>
      6 
      7 enum {
      8  kPOSIXErrnoEINTR = EINTR,
      9  kPOSIXErrnoECHILD = ECHILD,
     10  kPOSIXWaitWUNTRACED = WUNTRACED,
     11 };