1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-19 04:21:45 -07:00

Use fcntl.h in kqueue.c

* src/kqueue.c: Use fcntl.h (specified by POSIX) instead of
non-standard sys/file.h to access O_* open(2) flags.
This commit is contained in:
Jeremie Courreges-Anglas 2018-01-15 09:12:44 +01:00 committed by Michael Albinus
parent 5af5df1f7c
commit adb9e75d91

View file

@ -24,7 +24,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include <sys/types.h>
#include <sys/event.h>
#include <sys/time.h>
#include <sys/file.h>
#include <fcntl.h>
#include "lisp.h"
#include "keyboard.h"
#include "process.h"