1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

posix: Remove internal_function attribute

This commit is contained in:
Florian Weimer
2017-08-31 18:25:55 +02:00
parent 83b09837ed
commit b41bd5bc83
18 changed files with 198 additions and 261 deletions

View File

@ -33,7 +33,7 @@ preadv (int fd, const struct iovec *vector, int count, off_t offset)
}
# else
static ssize_t __atomic_preadv_replacement (int, const struct iovec *,
int, off_t) internal_function;
int, off_t);
ssize_t
preadv (int fd, const struct iovec *vector, int count, off_t offset)
{
@ -45,7 +45,7 @@ preadv (int fd, const struct iovec *vector, int count, off_t offset)
# endif
return __atomic_preadv_replacement (fd, vector, count, offset);
}
# define PREADV static internal_function __atomic_preadv_replacement
# define PREADV static __atomic_preadv_replacement
# define PREAD __pread
# define OFF_T off_t
# include <sysdeps/posix/preadv_common.c>