Remove fcntl wrapper
[lttng-tools.git] / src / common / compat / compat-fcntl.cpp
diff --git a/src/common/compat/compat-fcntl.cpp b/src/common/compat/compat-fcntl.cpp
deleted file mode 100644 (file)
index 18b6fa3..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright (C) 2011 David Goulet <dgoulet@efficios.com>
- *
- * SPDX-License-Identifier: LGPL-2.1-only
- *
- */
-
-#define _LGPL_SOURCE
-#include <common/compat/fcntl.hpp>
-#include <common/macros.hpp>
-
-#include <unistd.h>
-
-#ifdef __linux__
-
-int compat_sync_file_range(int fd, off_t offset, off_t nbytes, unsigned int flags)
-{
-#ifdef HAVE_SYNC_FILE_RANGE
-       return sync_file_range(fd, offset, nbytes, flags);
-#else
-       return fdatasync(fd);
-#endif
-}
-
-#endif /* __linux__ */
This page took 0.022998 seconds and 4 git commands to generate.