1
1

Merge pull request #5519 from extrowerk/haiku_patches

fcntl include bugfix
Этот коммит содержится в:
Gilles Gouaillardet 2018-08-27 09:46:43 +09:00 коммит произвёл GitHub
родитель a0ea197e97 ac3f8a16ed
Коммит 1665b8db8f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

Просмотреть файл

@ -32,8 +32,12 @@
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#ifdef HAVE_SYS_FCNTL_H
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#else
#ifdef HAVE_SYS_FCNTL_H
#include <sys/fcntl.h>
#endif
#endif
#include <string.h>