Fix missing errno include

This commit is contained in:
Maxime Coste 2019-01-24 23:15:22 +11:00
parent aa4885fd65
commit 3e89148d74
2 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,7 @@
#include <string.h> #include <string.h>
#include <pwd.h> #include <pwd.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h>
namespace Kakoune namespace Kakoune

View File

@ -19,6 +19,7 @@
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#include <cstdlib> #include <cstdlib>
#include <errno.h>
#if defined(__CYGWIN__) #if defined(__CYGWIN__)
#define vfork fork #define vfork fork