mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
23 lines
556 B
Plaintext
23 lines
556 B
Plaintext
From a271486149b4bcec752fa10f58c50399be2ac82b Mon Sep 17 00:00:00 2001
|
|
From: David Karoly <david.karoly@outlook.com>
|
|
Date: Fri, 12 Nov 2021 16:18:06 +0000
|
|
Subject: fix include fcntl.h
|
|
|
|
|
|
diff --git a/lib/local_filesys.cpp b/lib/local_filesys.cpp
|
|
index 5ec962d..ba7d583 100644
|
|
--- a/lib/local_filesys.cpp
|
|
+++ b/lib/local_filesys.cpp
|
|
@@ -7,7 +7,7 @@
|
|
#include "windows/security_descriptor_builder.hpp"
|
|
#else
|
|
#include <errno.h>
|
|
-#include <sys/fcntl.h>
|
|
+#include <posix/fcntl.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
--
|
|
2.30.2
|
|
|