[lldb] rm include/lldb/Host/posix/Fcntl.h
authorPavel Labath <pavel@labath.sk>
Sun, 6 Nov 2022 08:43:27 +0000 (09:43 +0100)
committerPavel Labath <pavel@labath.sk>
Tue, 22 Nov 2022 15:13:29 +0000 (16:13 +0100)
File is unused.

lldb/include/lldb/Host/posix/Fcntl.h [deleted file]

diff --git a/lldb/include/lldb/Host/posix/Fcntl.h b/lldb/include/lldb/Host/posix/Fcntl.h
deleted file mode 100644 (file)
index 31cc293..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-//===-- Fcntl.h -------------------------------------------------*- C++ -*-===//
-//
-// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
-// See https://llvm.org/LICENSE.txt for license information.
-// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-//
-//===----------------------------------------------------------------------===//
-
-// This file defines fcntl functions & structures
-
-#ifndef liblldb_Host_posix_Fcntl_h_
-#define liblldb_Host_posix_Fcntl_h_
-
-#ifdef __ANDROID__
-#include <android/api-level.h>
-#endif
-
-#include <fcntl.h>
-
-#if defined(__ANDROID_API__) && __ANDROID_API__ < 21
-#define F_DUPFD_CLOEXEC (F_LINUX_SPECIFIC_BASE + 6)
-#endif
-
-#endif // liblldb_Host_posix_Fcntl_h_