[libc-commits] [libc] [libc] Implement fallocate (PR #222843)
Pavel Labath via libc-commits
libc-commits at lists.llvm.org
Fri Sep 11 03:59:48 PDT 2026
================
@@ -0,0 +1,26 @@
+//===----------------------------------------------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// Implementation header for fallocate
+///
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LIBC_SRC_FCNTL_FALLOCATE_H
+#define LLVM_LIBC_SRC_FCNTL_FALLOCATE_H
+
+#include "src/__support/macros/config.h"
+#include "hdr/types/off_t.h"
+
+namespace LIBC_NAMESPACE_DECL {
+
+ int fallocate(int fd, int mode, off_t offset, off_t size);
----------------
labath wrote:
same here.
https://github.com/llvm/llvm-project/pull/222843
More information about the libc-commits
mailing list