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 @@ pwritev (int fd, const struct iovec *vector, int count, off_t offset)
}
# else
static ssize_t __atomic_pwritev_replacement (int, const struct iovec *,
int, off_t) internal_function;
int, off_t);
ssize_t
pwritev (int fd, const struct iovec *vector, int count, off_t offset)
{
@ -45,7 +45,7 @@ pwritev (int fd, const struct iovec *vector, int count, off_t offset)
# endif
return __atomic_pwritev_replacement (fd, vector, count, offset);
}
# define PWRITEV static internal_function __atomic_pwritev_replacement
# define PWRITEV static __atomic_pwritev_replacement
# define PWRITE __pwrite
# define OFF_T off_t
# include <sysdeps/posix/pwritev_common.c>