aboutsummaryrefslogtreecommitdiffstats
path: root/guts/open64.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/open64.c')
-rw-r--r--guts/open64.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/guts/open64.c b/guts/open64.c
new file mode 100644
index 0000000..0898c78
--- /dev/null
+++ b/guts/open64.c
@@ -0,0 +1,11 @@
+/*
+ * static int
+ * wrap_open64(const char *path, int flags, ...mode_t mode) {
+ * int rc = -1;
+ */
+
+ rc = wrap_openat(AT_FDCWD, path, flags, mode | O_LARGEFILE);
+
+/* return rc;
+ * }
+ */