From b41bd5bc83b23f62f6f0815d20ed1e1185c58086 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 31 Aug 2017 18:25:55 +0200 Subject: posix: Remove internal_function attribute --- sysdeps/unix/sysv/linux/pwritev64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/unix/sysv/linux/pwritev64.c') diff --git a/sysdeps/unix/sysv/linux/pwritev64.c b/sysdeps/unix/sysv/linux/pwritev64.c index 9dc4e55..a7cec4e 100644 --- a/sysdeps/unix/sysv/linux/pwritev64.c +++ b/sysdeps/unix/sysv/linux/pwritev64.c @@ -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 -- cgit v1.1