]> rtime.felk.cvut.cz Git - l4.git/blobdiff - l4/pkg/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/openat64.c
Update
[l4.git] / l4 / pkg / uclibc / lib / contrib / uclibc / libc / sysdeps / linux / common / openat64.c
diff --git a/l4/pkg/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/openat64.c b/l4/pkg/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/openat64.c
deleted file mode 100644 (file)
index eda3e7d..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * openat() for uClibc
- *
- * Copyright (C) 2009 Analog Devices Inc.
- *
- * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
- */
-
-#include <_lfs_64.h>
-#include <sys/syscall.h>
-#include <fcntl.h>
-
-#ifdef __NR_openat
-static int __openat64(int fd, const char *file, int oflag, mode_t mode)
-{
-       return openat(fd, file, oflag | O_LARGEFILE, mode);
-}
-strong_alias_untyped(__openat64,openat64)
-#else
-/* should add emulation with open() and /proc/self/fd/ ... */
-#endif