1 /* Copyright (C) 2003-2022 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3 
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
8 
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
13 
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, see
16    <https://www.gnu.org/licenses/>.  */
17 
18 #undef weak_alias
19 #define weak_alias(a, b)
20 #undef strong_alias
21 #define strong_alias(a, b)
22 
23 #include <sysdeps/unix/sysv/linux/posix_fadvise64.c>
24 
25 /* Although both posix_fadvise and posix_fadvise64 has the same semantic
26    on mips64, there were were releases with both symbol versions (BZ#14044).
27    So we need to continue export them.  */
28 #if SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_3_3)
29 _strong_alias (__posix_fadvise64_l64, __posix_fadvise64_l32);
30 compat_symbol (libc, __posix_fadvise64_l32, posix_fadvise64, GLIBC_2_2);
31 versioned_symbol (libc, __posix_fadvise64_l64, posix_fadvise64, GLIBC_2_3_3);
32 #else
33 _weak_alias (posix_fadvise, posix_fadvise64);
34 #endif
35 _strong_alias (__posix_fadvise64_l64, posix_fadvise);
36