mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
posix: Remove internal_function attribute
This commit is contained in:
@ -31,7 +31,7 @@ pwritev64 (int fd, const struct iovec *vector, int count, off64_t offset)
|
||||
}
|
||||
#else
|
||||
static ssize_t __atomic_pwritev64_replacement (int, const struct iovec *,
|
||||
int, off64_t) internal_function;
|
||||
int, off64_t);
|
||||
ssize_t
|
||||
pwritev64 (int fd, const struct iovec *vector, int count, off64_t offset)
|
||||
{
|
||||
@ -43,7 +43,7 @@ pwritev64 (int fd, const struct iovec *vector, int count, off64_t offset)
|
||||
#endif
|
||||
return __atomic_pwritev64_replacement (fd, vector, count, offset);
|
||||
}
|
||||
# define PWRITEV static internal_function __atomic_pwritev64_replacement
|
||||
# define PWRITEV static __atomic_pwritev64_replacement
|
||||
# define PWRITE __pwrite64
|
||||
# define OFF_T off64_t
|
||||
# include <sysdeps/posix/pwritev_common.c>
|
||||
|
Reference in New Issue
Block a user