]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/lxstat64.c
ldbl-opt: Reuse argp tests that print long double
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / lxstat64.c
1 /* lxstat64 using Linux lstat64 system call.
2 Copyright (C) 1997-2019 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
18
19 #include <errno.h>
20 #include <stddef.h>
21 #include <sys/stat.h>
22 #include <kernel_stat.h>
23
24 #include <sysdep.h>
25 #include <sys/syscall.h>
26
27 /* Get information about the file NAME in BUF. */
28 int
29 ___lxstat64 (int vers, const char *name, struct stat64 *buf)
30 {
31 int result;
32 result = INLINE_SYSCALL (lstat64, 2, name, buf);
33 return result;
34 }
35
36 #include <shlib-compat.h>
37
38 #if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2)
39 versioned_symbol (libc, ___lxstat64, __lxstat64, GLIBC_2_2);
40 strong_alias (___lxstat64, __old__lxstat64)
41 compat_symbol (libc, __old__lxstat64, __lxstat64, GLIBC_2_1);
42 hidden_ver (___lxstat64, __lxstat64)
43 #else
44 strong_alias (___lxstat64, __lxstat64);
45 hidden_def (__lxstat64)
46 #endif