mirror of
https://github.com/neovim/neovim.git
synced 2025-09-16 16:28:17 +00:00

It's probably not worth adding the C test files to regular formatting as they're pretty much never touched, but ensuring the files are formatted according to our standards and getting rid of warnings is a cheap one-time fix.
12 lines
205 B
C
12 lines
205 B
C
#include <errno.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/wait.h>
|
|
#include <unistd.h>
|
|
|
|
enum {
|
|
kPOSIXErrnoEINTR = EINTR,
|
|
kPOSIXErrnoECHILD = ECHILD,
|
|
kPOSIXWaitWUNTRACED = WUNTRACED,
|
|
};
|